mirror of
https://github.com/frosch95/K8sFileBrowser.git
synced 2026-04-11 12:58:22 +02:00
35 lines
1.6 KiB
XML
35 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\**" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.0.1" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.1" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.1" />
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.1" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.1" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.1" />
|
|
<PackageReference Include="KubernetesClient" Version="11.0.44" />
|
|
<PackageReference Include="Serilog" Version="3.0.1" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
|
</ItemGroup>
|
|
</Project>
|