AVS-Carton-Shipment-Verifier/AVSCartonShipmentVerifier.c...

30 lines
1.4 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>AVSCartonShipmentVerifier</AssemblyName>
<RootNamespace>AVSCartonShipmentVerifier</RootNamespace>
<UserSecretsId>AVSCartonShipmentVerifier-d4f8e9b2-3c1a-4f6e-9b7d-2a8e5c1f9d3b</UserSecretsId>
<!-- Release / publish: hide console on Windows when double-clicking the exe. Debug: keep console for logs. -->
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
<OutputType Condition="'$(Configuration)' != 'Release'">Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\Sound\alert.wav" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<!-- Default SDK Content does not copy wwwroot to bin; static assets use a runtime manifest. Copy wwwroot into output so WebRootPath exists when running the built exe (silences StaticFileMiddleware warning; xcopy-friendly). -->
<ItemGroup>
<Content Update="wwwroot\**\*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Project>