-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRainmeterFreeze.csproj
More file actions
38 lines (33 loc) · 1.5 KB
/
RainmeterFreeze.csproj
File metadata and controls
38 lines (33 loc) · 1.5 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows</TargetFramework>
<StartupObject>RainmeterFreeze.Program</StartupObject>
<PublishAot>true</PublishAot>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <!-- for LibraryImport -->
</PropertyGroup>
<PropertyGroup>
<Authors>ascpixi</Authors>
<Version>1.1.0</Version>
<PackageProjectUrl>https://github.com/ascpixi/RainmeterFreeze</PackageProjectUrl>
<RepositoryUrl>https://github.com/ascpixi/RainmeterFreeze</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<ApplicationIcon>./Resources/Icon.ico</ApplicationIcon>
<ApplicationManifest>./Resources/RainmeterFreeze.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<MetricsSupport>false</MetricsSupport>
<XmlResolverIsNetworkingEnabledByDefault>false</XmlResolverIsNetworkingEnabledByDefault>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="H.NotifyIcon" Version="2.3.0" />
</ItemGroup>
</Project>