forked from ClassIsland/ClassIsland
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathClassIsland.Core.csproj
89 lines (78 loc) · 3.61 KB
/
ClassIsland.Core.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows7.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<UserSecretsId>d3a133e8-8208-4210-818a-e5c3335f8cbf</UserSecretsId>
<Description>ClassIsland 应用核心依赖库,包括 ClassIsland 封装的一些常用控件和方法。</Description>
<PackageTags>classisland;wpf;material design</PackageTags>
<Configurations>Debug;Release;Debug_MSIX;Release_MSIX</Configurations>
</PropertyGroup>
<!-- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup> -->
<ItemGroup>
<None Remove="NativeMethods.json" />
<None Remove="NativeMethods.txt" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="NativeMethods.json" />
<AdditionalFiles Include="NativeMethods.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ClassIsland.Shared.IPC\ClassIsland.Shared.IPC.csproj" />
<ProjectReference Include="..\ClassIsland.Shared\ClassIsland.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="MdXaml.AnimatedGif" Version="1.27.0" />
<PackageReference Include="MdXaml.Html" Version="1.27.0" />
<PackageReference Include="H.NotifyIcon.Wpf" Version="2.0.131" />
<PackageReference Include="MaterialDesignThemes" Version="4.8.0" />
<PackageReference Include="MaterialDesignThemes.MahApps" Version="0.2.8" />
<PackageReference Include="gong-wpf-dragdrop" Version="3.2.1" />
<PackageReference Include="Octokit" Version="9.1.0" />
<PackageReference Include="unvell.ReoGridWPF.dll" Version="2.2.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="VirtualizingWrapPanel" Version="2.0.6" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
<ItemGroup>
<Compile Update="Controls\AttachedSettingsControlPresenter.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Controls\CommonDialog\CommonDialog.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Controls\StarRailLoadingControl.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Controls\TeyvatLoadingControl.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Folder Include="Controls\StickerControl\" />
<Folder Include="Enums\Updating\" />
<Folder Include="Properties\" />
<Folder Include="Commands\" />
</ItemGroup>
<Import Project="..\GeneratePackage.props" />
<Import Project="..\Global.props" />
<ItemGroup>
<PackageReference Update="GitInfo" Version="3.3.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>