-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Directory.Build.props
30 lines (26 loc) · 1.09 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
30
<Project>
<PropertyGroup>
<Product>Robots</Product>
<Version>1.8.0</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>
<Icon>iconRobot.png</Icon>
<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>
<AnalysisLevel>latest</AnalysisLevel>
<NoWarn>MSB3270</NoWarn>
<RootDir>$(MSBuildThisFileDirectory)</RootDir>
<ArtifactsPath>$(RootDir)artifacts</ArtifactsPath>
</PropertyGroup>
</Project>