-
Notifications
You must be signed in to change notification settings - Fork 0
/
Test.csproj
34 lines (34 loc) · 1.46 KB
/
Test.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.10" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.10" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.10" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.12" />
<PackageReference Include="ReactiveUI.Fody" Version="16.3.10" />
</ItemGroup>
<ItemGroup>
<Compile Update="Views\MenuWindowView.axaml.cs">
<DependentUpon>MenuWindowView.axaml</DependentUpon>
</Compile>
<Compile Update="Views\ObjednavkyWindowView.axaml.cs">
<DependentUpon>ObjednavkyWindowView.axaml</DependentUpon>
</Compile>
<Compile Update="Views\NovaObjednavkaWindowView.axaml.cs">
<DependentUpon>NovaObjednavkaWindowView.axaml</DependentUpon>
</Compile>
<Compile Update="Views\MainWindow.axaml.cs">
<DependentUpon>MainWindow.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>