-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (33 loc) · 1.38 KB
/
Directory.Build.props
File metadata and controls
36 lines (33 loc) · 1.38 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory.TrimEnd('\\'))</RepoRoot>
<Nullable>Enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>Enable</ImplicitUsings>
<LangVersion>Latest</LangVersion>
<DebugType>embedded</DebugType>
</PropertyGroup>
<!-- Packaging -->
<PropertyGroup>
<Authors>Alex Stakh</Authors>
<Copyright>© Alex Stakh. All rights reserved.</Copyright>
<Description>Easily protect from unwanted dependencies in your repository</Description>
<PackageProjectUrl>https://github.com/olstakh/ReferenceProtector</PackageProjectUrl>
<RepositoryUrl>https://github.com/olstakh/ReferenceProtector.git</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<!-- Source Link (https://github.com/dotnet/sourcelink) -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- Versioning (https://github.com/dotnet/Nerdbank.GitVersioning) -->
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" />
</ItemGroup>
</Project>