48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationIcon Condition="Exists('assets\\favicon.ico')">assets\favicon.ico</ApplicationIcon>
|
|
<RootNamespace>UtopiaCanteenSystem</RootNamespace>
|
|
<AssemblyName>UtopiaCanteenSystem</AssemblyName>
|
|
<ProjectGuid>{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}</ProjectGuid>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="UtopiaCanteen.Shared\**" />
|
|
<Compile Remove="UtopiaCanteen.Backend\**" />
|
|
<Compile Remove="UtopiaCanteen.BackendService\**" />
|
|
<Compile Remove="UtopiaCanteen.Client\**" />
|
|
<Page Remove="UtopiaCanteen.Client\**" />
|
|
<ApplicationDefinition Remove="UtopiaCanteen.Client\**" />
|
|
<ProjectReference Include="UtopiaCanteen.Shared\UtopiaCanteen.Shared.csproj" />
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.11">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="MySqlConnector" Version="2.3.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="assets\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|