-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathModer.Core.csproj
More file actions
118 lines (110 loc) · 5.85 KB
/
Copy pathModer.Core.csproj
File metadata and controls
118 lines (110 loc) · 5.85 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<WarningsAsErrors>nullable</WarningsAsErrors>
<LangVersion>preview</LangVersion>
<ApplicationIcon>logo.ico</ApplicationIcon>
<MvvmToolkitEnableINotifyPropertyChangingSupport>false</MvvmToolkitEnableINotifyPropertyChangingSupport>
<Configurations>Debug;Release;Debug-Linux</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.2.3"/>
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.1.0" />
<PackageReference Include="Avalonia.Desktop" Version="11.2.2"/>
<PackageReference Include="Avalonia.Svg.Skia" Version="11.2.0.2" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.2"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.2"/>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.2.3">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="Avalonia.Xaml.Interactivity" Version="11.2.0.1" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.1.0" />
<PackageReference Include="DynamicData" Version="9.0.4" />
<PackageReference Include="FluentAvaloniaUI" Version="2.2.0" />
<PackageReference Include="MessageBox.Avalonia" Version="3.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
<PackageReference Include="Ardalis.SmartEnum" Version="8.2.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Enums.NET" Version="5.0.0" />
<PackageReference Include="Fody" Version="6.9.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FSharp.Core" Version="9.0.100" />
<PackageReference Include="MemoryPack" Version="1.21.3" />
<PackageReference Include="MethodTimer.Fody" Version="3.2.2" />
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.15" />
<PackageReference Include="ParadoxPower" Version="0.5.1-beta" />
<PackageReference Include="ParadoxPower.CSharpExtensions" Version="0.2.2-beta" />
<PackageReference Include="Pfim" Version="0.11.3" />
<PackageReference Include="Pidgin" Version="3.3.0" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug' Or '$(Configuration)' == 'Debug-Linux'" >
<DefineConstants>$(DefineConstants);ENABLE_XAML_HOT_RELOAD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Condition="$(DefineConstants.Contains(ENABLE_XAML_HOT_RELOAD))" Include="Avalonia.Markup.Xaml.Loader" Version="11.2.2" />
<PackageReference Condition="$(DefineConstants.Contains(ENABLE_XAML_HOT_RELOAD))" Include="HotAvalonia" Version="2.1.0" />
<PackageReference Include="HotAvalonia.Extensions" Version="2.1.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug-Linux' ">
<DefineConstants>$(DefineConstants);LINUX;DEBUG</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Condition="$(DefineConstants.Contains(WINDOWS))" Include="Vanara.Windows.Shell" Version="4.0.4" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.Development.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="Assets\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Moder.Hosting\Moder.Hosting.csproj" />
<ProjectReference Include="..\Moder.Language\Moder.Language.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="ViewsModel.cs" />
<Compile Update="Views\MainWindow.axaml.cs">
<DependentUpon>MainWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Menus\SideBarControlView.axaml.cs">
<DependentUpon>SideBarControlView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Menus\AppInitializeControlView.axaml.cs">
<DependentUpon>AppInitializeControlView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Views\Menus\MainControlView.axaml.cs">
<DependentUpon>MainControlView.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Controls\DirectorySelector.axaml" />
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\CodeEditor\Grammars\" />
<Folder Include="Assets\CodeEditor\Themes\" />
<Folder Include="Converters\" />
</ItemGroup>
</Project>