You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
|
15 hours ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
||
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<AvaloniaResource Include="Assets\**" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Avalonia" Version="11.1.5" />
|
||
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.1.5" />
|
||
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.5" />
|
||
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.5" />
|
||
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
|
||
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.1.5" />
|
||
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="11.1.5">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="Com.Ctrip.Framework.Apollo" Version="2.11.0" />
|
||
|
|
<PackageReference Include="Com.Ctrip.Framework.Apollo.Configuration" Version="2.11.0" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
|
||
|
|
<PackageReference Include="Scrutor" Version="7.0.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\Sln.Wcs.Cache\Sln.Wcs.Cache.csproj" />
|
||
|
|
<ProjectReference Include="..\Sln.Wcs.Common\Sln.Wcs.Common.csproj" />
|
||
|
|
<ProjectReference Include="..\Sln.Wcs.Model\Sln.Wcs.Model.csproj" />
|
||
|
|
<ProjectReference Include="..\Sln.Wcs.Repository\Sln.Wcs.Repository.csproj" />
|
||
|
|
<ProjectReference Include="..\Sln.Wcs.Serilog\Sln.Wcs.Serilog.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="appsettings.json">
|
||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
|
</Content>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|