-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (44 loc) · 2.14 KB
/
Directory.Build.props
File metadata and controls
48 lines (44 loc) · 2.14 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
<Project>
<PropertyGroup>
<Authors>Taiizor</Authors>
<Company>Taiizor</Company>
<Optimize>false</Optimize>
<Product>$(Title)</Product>
<Nullable>disable</Nullable>
<LangVersion>preview</LangVersion>
<Description>$(Title)</Description>
<Platforms>ARM64;x64;x86</Platforms>
<FileVersion>$(Version)</FileVersion>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<Title>Sucrose Wallpaper Engine</Title>
<AssemblyVersion>$(Version)</AssemblyVersion>
<NoWarn>$(NoWarn);CS8632;WFO0003;SYSLIB0014</NoWarn>
<TargetFrameworks>net10.0-windows</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<InformationalVersion>$(Version)</InformationalVersion>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<RuntimeIdentifiers>win-arm64;win-x64;win-x86</RuntimeIdentifiers>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<Copyright>Copyright © $([System.DateTime]::Today.ToString(yyyy)) $(Company)</Copyright>
<Version>$([System.DateTime]::Today.ToString(yy)).$([System.DateTime]::Today.ToString(MM)).$([System.DateTime]::Today.ToString(dd))</Version>
</PropertyGroup>
<PropertyGroup>
<BaseOutputPath>..\..\Sucrose</BaseOutputPath>
<BaseIntermediateOutputPath>$(BaseOutputPath)\Object\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>moderate</NuGetAuditLevel>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<PropertyGroup>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>