forked from ha0719/WinCal
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWinCal.csproj
More file actions
43 lines (38 loc) · 1.57 KB
/
Copy pathWinCal.csproj
File metadata and controls
43 lines (38 loc) · 1.57 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<!-- 需要安装 Windows 10 SDK 后取消注释以下行以启用真实日历 API -->
<!-- <UseWinRT>true</UseWinRT> -->
<!-- <WindowsPackageType>None</WindowsPackageType> -->
<RootNamespace>WinCal</RootNamespace>
<AssemblyName>WinCal</AssemblyName>
<Version>1.3.0</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon />
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.0" />
<PackageReference Include="Ical.Net" Version="4.3.1" />
<!-- 需要安装 Windows 10 SDK 后取消注释以下行 -->
<!-- <PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.1.1" /> -->
</ItemGroup>
<ItemGroup>
<None Remove="Assets\twemoji-flags.zip" />
<Resource Include="Assets\twemoji-flags.zip" />
</ItemGroup>
<!-- 暂时排除需要 Windows SDK (WinRT) 的文件 -->
<ItemGroup>
<Compile Remove="Core\Services\WindowsCalendarService.cs" />
</ItemGroup>
</Project>