-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
55 lines (47 loc) · 2.35 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
<Project>
<PropertyGroup>
<Authors>Chad Jessup</Authors>
<Company>Good Enough Industries</Company>
<Product>$(ProjectName)</Product>
<Version>0.0.1</Version>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<NoWarn>CA1710</NoWarn>
</PropertyGroup>
<PropertyGroup>
<!--<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-musl-x64;linux-arm;win-arm;win-arm64</RuntimeIdentifiers>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>-->
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Github Sourcelink values -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- These packages are automatically added to any csproj in this directory tree. -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.0-beta-20204-02" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<!-- Build all paths from location of this file. -->
<BaseDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)))</BaseDir>
<BuildOutputPath>$(BaseDir)\build</BuildOutputPath>
<!-- All build-time artifacts in the .\build folder -->
<!-- Files with pattern: {project}.csproj.FileListAbsolute.txt, *.AssemblyInfo.cs -->
<BaseIntermediateOutputPath>$(BuildOutputPath)\obj\$(Platform)\$(RuntimeIdentifier)\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<!-- nuget.g.targets, project.assets.json, project.nuget.cache -->
<MSBuildProjectExtensionsPath>$(BaseIntermediateOutputPath)</MSBuildProjectExtensionsPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
<OutputPath>$(BuildOutputPath)\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
<NuspecOutputPath>$(BuildOutputPath)</NuspecOutputPath>
<NugetPackageOutputLocation>$(BuildOutputPath)\NugetPackages</NugetPackageOutputLocation>
<RestorePackagesPath>$(NugetPackageOutputLocation)</RestorePackagesPath>
<DocumentationFile>$(OutputPath)\$(MSBuildProjectName).XML</DocumentationFile>
</PropertyGroup>
</Project>