27 lines
784 B
XML
27 lines
784 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net9.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Platforms>AnyCPU;ARM64</Platforms>
|
||
|
|
</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>
|