-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProxyChecker.csproj
More file actions
44 lines (40 loc) · 1.76 KB
/
Copy pathProxyChecker.csproj
File metadata and controls
44 lines (40 loc) · 1.76 KB
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
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.10" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.10" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.10" />
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.10">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Irihi.Ursa.Themes.Semi" Version="1.14.1" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Semi.Avalonia" Version="11.3.7.2" />
<PackageReference Include="Semi.Avalonia.TreeDataGrid" Version="11.0.10.4" />
<PackageReference Include="Velopack" Version="0.0.1298" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<RdXmlFile Include="rd.xml" />
</ItemGroup>
<ItemGroup>
<Compile Update="Dialogs\Views\AboutDialog.axaml.cs">
<DependentUpon>AboutDialog.axaml</DependentUpon>
</Compile>
<Compile Update="Views\AboutView.axaml.cs">
<DependentUpon>AboutView.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>