Files
TWA-App/TWASys-App/TWASys-App.csproj
2025-11-18 11:48:01 +07:00

57 lines
2.0 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net9.0-windows;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>TWASys_App</RootNamespace>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net9.0-windows'">
<PackageReference Include="System.Management" Version="9.0.10" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net9.0-windows'">
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Include="wwwroot\css\atg-font\atg-admin-font.css" />
<None Include="wwwroot\css\atg-font\atg-font.css" />
<None Include="wwwroot\css\atg-lib\atg-core-min.css" />
<None Include="wwwroot\css\atg-lib\atg-core.css" />
<None Include="wwwroot\css\atg-lib\atg-upload.css" />
<None Include="wwwroot\css\atg-lib\datepicker.css" />
<None Include="wwwroot\css\atg-lib\swiper-bundle.min.css" />
<None Include="wwwroot\css\atg-lib\waves.min.css" />
<None Include="wwwroot\css\atg-ui\atg-gui.css" />
<None Include="wwwroot\css\atg-ui\table.css" />
<None Include="wwwroot\css\site.css" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.66" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="9.0.10" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="9.0.10" />
<PackageReference Include="MySqlConnector" Version="2.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AppLibs\AppLibs\AppLibs.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Keys\db\ca-cert.pem">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Keys\db\client-cert.pem">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Keys\db\client-key.pem">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>