-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGradeManagement.csproj
69 lines (69 loc) · 3.06 KB
/
GradeManagement.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<RuntimeIdentifiers>osx-x64;win-x64;win-x86;linux-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup>
<UseAppHost>true</UseAppHost>
</PropertyGroup>
<PropertyGroup>
<CFBundleName>GradeManagement</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>GradeManagement</CFBundleDisplayName>
<CFBundleIdentifier>com.duck-dev.grade-management</CFBundleIdentifier>
<CFBundleVersion>1.0.1</CFBundleVersion>
<CFBundleShortVersionString>1.0.1</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>GradeManagement</CFBundleExecutable>
<CFBundleIconFile>GradeManagementIcon.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.18" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.18" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.18" />
<PackageReference Include="DotNet.Bundle" Version="0.9.13" />
</ItemGroup>
<ItemGroup>
<Compile Update="src\App.axaml.cs">
<DependentUpon>App.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\ListViews\GradeListView.axaml.cs">
<DependentUpon>GradeListView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\ListViews\SubjectListView.axaml.cs">
<DependentUpon>SubjectListView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\ListViews\YearListView.axaml.cs">
<DependentUpon>YearListView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\AddPages\AddSubjectWindow.axaml.cs">
<DependentUpon>AddSubjectWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\AddPages\AddGradeWindow.axaml.cs">
<DependentUpon>AddGradeWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\TargetGrade\TargetGradeWindow.axaml.cs">
<DependentUpon>WishGradeWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>