2024-12-06 07:26:58 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
2024-12-09 10:41:40 +00:00
|
|
|
|
<UseWPF>False</UseWPF>
|
2024-12-06 07:26:58 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Models\" />
|
|
|
|
|
<AvaloniaResource Include="Assets\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Arch.EntityFrameworkCore.Analyzers" Version="2.1.15" />
|
2024-12-09 10:41:40 +00:00
|
|
|
|
<PackageReference Include="Avalonia" Version="11.2.2" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.2.2" />
|
2024-12-06 07:26:58 +00:00
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1" />
|
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1" />
|
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
|
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.2.1">
|
|
|
|
|
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
|
|
|
|
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Azura" Version="0.9.0" />
|
|
|
|
|
<PackageReference Include="ClosedXML" Version="0.104.2" />
|
|
|
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
|
|
|
|
|
<PackageReference Include="EPPlus" Version="7.5.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.7" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="2.1.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Graph" Version="5.63.0" />
|
2024-12-09 10:41:40 +00:00
|
|
|
|
<PackageReference Include="ReactiveUI" Version="20.1.63" />
|
2024-12-06 07:26:58 +00:00
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="7.1.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="7.1.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="7.1.0" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Zurnal\Zurnal.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|