22 lines
926 B
XML
22 lines
926 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<RestoreAdditionalProjectSources>https://ng.zznty.ru/v3/index.json</RestoreAdditionalProjectSources>
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CringePlugins" Version="*" ExcludeAssets="runtime; native"/>
|
|
<PackageReference Include="Steamworks.NET" Version="20.1.0" ExcludeAssets="runtime; native" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|