forked from BoBoBaSs84/DDS.Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
77 lines (68 loc) · 3.13 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<VersionMajor>$([System.DateTime]::UtcNow.Year)</VersionMajor>
<VersionMinor>$([System.DateTime]::UtcNow.Month)</VersionMinor>
<VersionPatch>$([System.DateTime]::UtcNow.Day)</VersionPatch>
<VersionRevision>$([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes.ToString("0"))</VersionRevision>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch).$(VersionRevision)</VersionPrefix>
<VersionSuffix Condition="$(Configuration.Equals('Debug'))">Development</VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<AnalysisLevel>latest</AnalysisLevel>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DebugType>none</DebugType>
<Deterministic>True</Deterministic>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<GeneratedAssemblyInfoFile>Properties\AssemblyInfo.cs</GeneratedAssemblyInfoFile>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Platforms>AnyCPU</Platforms>
<RunAnalyzersDuringBuild>True</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>True</RunAnalyzersDuringLiveAnalysis>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="!$(MSBuildProjectName.EndsWith('Tests'))">
<Author>BoBoBaSs84</Author>
<Authors>$(Author)</Authors>
<Company>https://github.com/$(Author)</Company>
<Copyright>Copyright © $(VersionMajor) $(Author)</Copyright>
<Description>
This is a simple DDS and PNG tool set that converts DDS images to PNG images and vice versa on a large scale.
Has options for duplicate detection and sorting.
</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/$(Author)/$(Product)</PackageProjectUrl>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageTags>dds;png;image;tool</PackageTags>
<Product>DDS.Tools</Product>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/$(Author)/$(Product)</RepositoryUrl>
<Title>$(AssemblyName)</Title>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Equals('Debug'))">
<DebugType>full</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IsTestProject>true</IsTestProject>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup Condition="!$(MSBuildProjectName.EndsWith('Tests'))">
<InternalsVisibleTo Include="$(AssemblyName)Tests" />
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="System.Diagnostics" />
<Using Include="System.Diagnostics.CodeAnalysis" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>