-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChemLocalLink.csproj
More file actions
54 lines (54 loc) · 2.54 KB
/
ChemLocalLink.csproj
File metadata and controls
54 lines (54 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>2.0.1</Version>
<OutputType>WinExe</OutputType>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<IsPackable>false</IsPackable>
<LangVersion>latestmajor</LangVersion>
<!-- Set target framework based on OS -->
<TargetFramework Condition="'$(OS)' == 'Windows_NT'"
>net8.0-windows10.0.17763.0</TargetFramework
>
<TargetFramework Condition="'$(OS)' != 'Windows_NT'">net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.2" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.2" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.2" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.2" />
<PackageReference
Condition="'$(Configuration)' == 'Debug'"
Include="Avalonia.Diagnostics"
Version="11.3.2"
/>
<PackageReference Include="Xaml.Behaviors.Avalonia" Version="11.3.2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="CurlThin" Version="0.0.7" />
<PackageReference Include="DesktopNotifications" Version="1.3.1" />
<PackageReference Include="DesktopNotifications.Avalonia" Version="1.3.1" />
<PackageReference Include="DesktopNotifications.FreeDesktop" Version="1.3.1" />
<PackageReference Include="DesktopNotifications.Windows" Version="1.3.1" />
<PackageReference Include="ini-parser-netstandard" Version="2.5.3" />
<PackageReference Include="MessageBox.Avalonia" Version="3.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.7" />
<PackageReference Include="Projektanker.Icons.Avalonia" Version="9.6.2" />
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="9.6.2" />
<PackageReference Include="RestSharp" Version="112.1.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.13.0" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Views\DownloadsView.axaml" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\icon.png" />
<Content Include="Assets\icon.ico" />
</ItemGroup>
</Project>