-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (29 loc) · 1.5 KB
/
Copy pathDirectory.Build.props
File metadata and controls
34 lines (29 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
<Project>
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">2</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">2</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch>
<BuildNumber Condition="'$(BuildNumber)' == ''">4</BuildNumber>
<VersionSuffix Condition="'$(Configuration)' == 'Debug' and '$(VersionSuffix)' == ''">dev</VersionSuffix>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
<AssemblyVersion>$(VersionMajor).$(VersionMinor).$(BuildNumber).$(VersionPatch)</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>gfoidl</Authors>
<Product>CairoSharp</Product>
<Copyright>Copyright © gfoidl</Copyright>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DebugType>embedded</DebugType>
<IsPackable>false</IsPackable>
<!-- Place all the artifacts in a central place, much nicer :-) -->
<!-- cf. https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-8#simplified-output-paths -->
<!-- But we need to specify a custom path, as we're one level deeper. -->
<!--<UseArtifactsOutput>true</UseArtifactsOutput>-->
<ArtifactsPath>$(MSBuildThisFileDirectory)\artifacts</ArtifactsPath>
</PropertyGroup>
</Project>