-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
executable file
·28 lines (22 loc) · 1.27 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
<Project>
<PropertyGroup>
<LangVersion>7.3</LangVersion>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<RepoRelativeProjectDir>$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectDirectory)))</RepoRelativeProjectDir>
<NoWarn>$(NoWarn);1591</NoWarn>
<IsUnitTestProject>false</IsUnitTestProject>
<IsUnitTestProject Condition="$(MSBuildProjectName.EndsWith('.Tests'))">true</IsUnitTestProject>
<IsBenchmarkProject>false</IsBenchmarkProject>
<IsBenchmarkProject Condition="$(MSBuildProjectName.EndsWith('.Benchmarks'))">true</IsBenchmarkProject>
<GenerateDocumentationFile Condition=" '$(IsUnitTestProject)' != 'true'">true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild Condition=" '$(IsUnitTestProject)' != 'true' AND '$(IsBenchmarkProject)' != 'true'">true</GeneratePackageOnBuild>
<Authors>GameStudio</Authors>
<RepositoryUrl>https://github.com/chadgrant/GameStudio-Net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://github.com/chadgrant/GameStudio-Net</PackageProjectUrl>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/1848046?s=200&v=4</PackageIconUrl>
</PropertyGroup>
</Project>