2024-12-24 19:18:37 +09:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-12-12 08:43:54 +09:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-12-24 19:18:37 +09:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-12-12 08:43:54 +09:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Platforms>AnyCPU;ARM64</Platforms>
|
2024-12-13 14:33:15 +09:00
|
|
|
|
<PublishAot>False</PublishAot>
|
|
|
|
|
|
<PublishTrimmed>False</PublishTrimmed>
|
2024-12-12 08:43:54 +09:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
|
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
|
|
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|