mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-25 07:38:17 +03:00
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<PublishAot>true</PublishAot>
|
|
<OutputType>Library</OutputType>
|
|
<EventSourceSupport>false</EventSourceSupport>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<OptimizationPreference>Size</OptimizationPreference>
|
|
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DebugType>None</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<MetricsSupport>false</MetricsSupport>
|
|
<DebuggerSupport>false</DebuggerSupport>
|
|
<EventSourceSupport>false</EventSourceSupport>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
|
|
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
|
|
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
|
|
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Properties\launchSettings.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|