-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAkademiTrack.csproj
More file actions
102 lines (99 loc) · 4.87 KB
/
AkademiTrack.csproj
File metadata and controls
102 lines (99 loc) · 4.87 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>Assets\AT-1024.ico</ApplicationIcon>
<Version>1.3.0</Version>
<AssemblyVersion>1.3.0</AssemblyVersion>
<FileVersion>1.3.0</FileVersion>
<AssemblyName>AkademiTrack</AssemblyName>
<Product>AkademiTrack</Product>
<Company>CyberBrothersHQ</Company>
<Description>Automatisk oppmøte-system - Akademiet</Description>
<CFBundleName>AkademiTrack</CFBundleName>
<CFBundleDisplayName>AkademiTrack</CFBundleDisplayName>
<CFBundleIdentifier>com.CyberBrothers.akademitrack</CFBundleIdentifier>
<CFBundleVersion>1.3.0</CFBundleVersion>
<CFBundleShortVersionString>1.3.0</CFBundleShortVersionString>
<CFBundleIconFile>AT-1024.icns</CFBundleIconFile>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
<!-- Also copy Assets as content for changelog service -->
<Content Include="Assets\*.png" Exclude="Assets\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\*.jpg" Exclude="Assets\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\*.ico" Exclude="Assets\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\*.icns" Exclude="Assets\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Changelogs\**\*.json" Exclude="Changelogs\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Changelogs\**\*.png" Exclude="Changelogs\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Changelogs\**\*.jpg" Exclude="Changelogs\**\EXAMPLE*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Assets\AT-Transparrent72.ico" />
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64' Or '$(RuntimeIdentifier)' == 'osx-arm64' Or ($([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX))) And '$(RuntimeIdentifier)' == '')">
<Content Include="Assets/Helpers/AkademiAuth">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="Assets/Helpers/AkademiTrack.app\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
<Content Include="Assets/Helpers/WinHelloAuth.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.12" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
<PackageReference Include="Material.Icons.Avalonia" Version="3.0.0" />
<PackageReference Include="MessageBox.Avalonia" Version="3.3.1.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.5" />
<PackageReference Include="OsNotifications" Version="1.1.3" />
<PackageReference Include="Selenium.WebDriver" Version="4.41.0" />
<PackageReference Include="Selenium.Support" Version="4.41.0" />
<PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" />
<PackageReference Include="WebDriverManager" Version="2.17.7" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.5" />
<PackageReference Include="System.Text.Json" Version="10.0.5" />
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="ReactiveUI" Version="23.1.8" />
<PackageReference Include="Velopack" Version="0.0.1298" />
</ItemGroup>
</Project>