-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Directory.Build.props
28 lines (24 loc) · 1.04 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>
<Product>Extensions</Product>
<Version>1.0.4</Version>
<Authors>Extensions Authors</Authors>
<Description>Assorted components for Grasshopper.</Description>
<PackageTags>Grasshopper;Extensions;Robots</PackageTags>
<PackageProjectUrl>https://github.com/visose/extensions</PackageProjectUrl>
<Icon>icon.png</Icon>
<ReleaseNotes>RELEASE</ReleaseNotes>
<CurrentYear>$([System.DateTime]::Now.Year)</CurrentYear>
<Copyright>Copyright (c) 2017-$(CurrentYear) $(Authors)</Copyright>
<Company>$(Authors) - $(PackageProjectUrl)</Company>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
<ArtifactsDir>$(RootDir)artifacts\</ArtifactsDir>
<OutputPath>$(ArtifactsDir)bin\$(MSBuildProjectName)</OutputPath>
<BaseIntermediateOutputPath>$(ArtifactsDir)obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>