forked from visose/Robots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
29 lines (25 loc) · 1.22 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
<Project>
<PropertyGroup>
<Product>Robots</Product>
<Version>1.6.4</Version>
<Authors>Robots Authors</Authors>
<Description>Create and simulate ABB, KUKA, UR, and Staubli robot programs.</Description>
<PackageTags>Robots;ABB;KUKA;UR;Staubli;Robotics</PackageTags>
<PackageProjectUrl>https://github.com/visose/robots</PackageProjectUrl>
<IconUrl>https://github.com/visose/robots/raw/master/build/Assets/iconRobot.png</IconUrl>
<ReleaseNotes>RELEASE</ReleaseNotes>
<CurrentYear>$([System.DateTime]::Now.Year)</CurrentYear>
<Copyright>Copyright (c) 2015-$(CurrentYear) $(Authors)</Copyright>
<Company>$(Authors) - $(PackageProjectUrl)</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/visose/robots.git</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ArtifactsDir>$(MSBuildThisFileDirectory)artifacts\</ArtifactsDir>
<OutputPath>$(ArtifactsDir)bin\$(MSBuildProjectName)</OutputPath>
<BaseIntermediateOutputPath>$(ArtifactsDir)obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>