-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVocabularyTrainer.csproj
69 lines (69 loc) · 3.17 KB
/
VocabularyTrainer.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>VocabularyTrainer</CFBundleName> <!-- Also defines .app file name -->
<CFBundleDisplayName>VocabularyTrainer</CFBundleDisplayName>
<CFBundleIdentifier>com.duck-dev.vocabulary-trainer</CFBundleIdentifier>
<CFBundleVersion>1.0.2</CFBundleVersion>
<CFBundleShortVersionString>1.0.2</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>VocabularyTrainer</CFBundleExecutable>
<CFBundleIconFile>VocabularyTrainerIcon.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.21" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.21" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.21" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.21" />
<PackageReference Include="DotNet.Bundle" Version="0.9.13" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Views\MainWindow.axaml" />
</ItemGroup>
<ItemGroup>
<Compile Update="src\App.axaml.cs">
<DependentUpon>App.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\AddLesson\AddLessonView.axaml.cs">
<DependentUpon>AddLessonView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\OpenLesson\LessonView.axaml.cs">
<DependentUpon>LessonView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\LessonOptions\LessonOptions.axaml.cs">
<DependentUpon>LessonOptions.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\LearningModes\SecondaryElements\LearningModeSidebarView.axaml.cs">
<DependentUpon>LearningModeSidebarView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="src\Views\LearningModes\SecondaryElements\SolutionPanelView.axaml.cs">
<DependentUpon>SolutionPanelView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>