-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (34 loc) · 1.49 KB
/
Copy pathDirectory.Build.props
File metadata and controls
34 lines (34 loc) · 1.49 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
<?xml version="1.0" encoding="UTF-8"?>
<Project>
<PropertyGroup Label="Common Package Metadata">
<Authors>Fredrik Høisæther Rasch</Authors>
<Product>TH-NETII .NET Common libraries and extensions</Product>
<Company>TH-NETII Rasch Solutions</Company>
<Copyright>Written by Fredrik Høisæther Rasch, $([System.DateTime]::Now.Year)</Copyright>
<PackageProjectUrl>https://github.com/thnetii/dotnet-common</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(VersionPrefix)'==''">
<VersionPrefix>0.0.1</VersionPrefix>
<!--<VersionSuffix>preview1</VersionSuffix>-->
</PropertyGroup>
<PropertyGroup Label="BasePath">
<BaseOutputPath>$(MSBuildThisFileDirectory)bin\$(MSBuildProjectName)\</BaseOutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Label="SourceLink">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType Condition=" '$(DebugType)' == '' ">portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<AnalysisMode>all</AnalysisMode>
</PropertyGroup>
<PropertyGroup>
<LangVersion Condition="'$(LangVersion)' == ''">12.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>