tcc/ASP.NET/TCC.APP.csproj

33 lines
937 B
XML
Raw Normal View History

2023-08-16 18:40:27 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>tcc_app</RootNamespace>
2023-08-23 14:16:36 +00:00
<PlatformTarget>AnyCPU</PlatformTarget>
2023-08-16 18:40:27 +00:00
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2023-08-24 17:25:54 +00:00
<MagickCopyNativeLinux>true</MagickCopyNativeLinux>
2023-08-16 18:40:27 +00:00
</PropertyGroup>
<ItemGroup>
2023-11-02 22:14:16 +00:00
<PackageReference Include="protobuf-net" Version="3.2.26" />
2023-08-16 18:40:27 +00:00
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>