forked from ionide/proj-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
25 lines (20 loc) · 954 Bytes
/
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
<Project ToolsVersion="15.0">
<PropertyGroup>
<Version Condition=" '$(Version)' == '' ">0.37.0$(VersionSuffix)</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>enricosada</Authors>
<PackageProjectUrl>https://github.com/enricosada/dotnet-proj-info/</PackageProjectUrl>
<PackageTags>msbuild;dotnet;sdk;csproj;fsproj</PackageTags>
<RepositoryUrl>https://github.com/enricosada/dotnet-proj-info.git</RepositoryUrl>
<PackageLicenseUrl>https://github.com/enricosada/dotnet-proj-info/blob/master/LICENSE</PackageLicenseUrl>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);FS2003</NoWarn>
</PropertyGroup>
<PropertyGroup>
<RepoRootDir>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)"))</RepoRootDir>
<NupkgsDir>$([System.IO.Path]::GetFullPath("$(RepoRootDir)/bin/nupkg"))</NupkgsDir>
<MonoOrEmpty Condition=" '$(OS)' != 'Windows_NT' ">mono </MonoOrEmpty>
</PropertyGroup>
</Project>