blob: a2a7b1a127da7b0c40c581c6a543a007eb05fcc8 [file] [log] [blame]
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01001<Project Sdk="Microsoft.NET.Sdk">
2 <PropertyGroup>
Constantin Ziesche9ca87782020-04-03 12:06:02 +02003 <TargetFramework>netstandard2.0</TargetFramework>
Constantin Zieschefa612082020-04-03 09:54:56 +02004 <OutputType>Library</OutputType>
5 <Authors>Constantin Ziesche</Authors>
Constantin Ziesche43b9ea02021-05-03 15:31:02 +02006 <Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright>
Constantin Zieschefa612082020-04-03 09:54:56 +02007 <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl>
8 <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl>
9 <PackageLicenseUrl></PackageLicenseUrl>
10 <Description>The official BaSyx Collection of APIs</Description>
11 <Company>Robert Bosch GmbH</Company>
12 <PackageTags>BaSys BaSyx API</PackageTags>
13 <PackageLicenseExpression>EPL-2.0</PackageLicenseExpression>
14 <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
15 <PackageIcon>basyxlogo.png</PackageIcon>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010016 </PropertyGroup>
17
Constantin Ziesche43b9ea02021-05-03 15:31:02 +020018 <PropertyGroup>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010019 <DebugType>Full</DebugType>
20 </PropertyGroup>
21
22 <ItemGroup>
23 <ProjectReference Include="..\BaSyx.Models\BaSyx.Models.csproj" />
24 </ItemGroup>
Constantin Ziesche43b9ea02021-05-03 15:31:02 +020025
26 <ItemGroup>
27 <None Include="..\..\resources\basyxlogo.png">
28 <Pack>True</Pack>
29 <PackagePath></PackagePath>
30 </None>
31 </ItemGroup>
32
33 <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34 <Exec Command="IF EXIST %25BASYX_REPO%25 ( dotnet pack &quot;$(ProjectPath)&quot; -c Release --no-build --include-source --include-symbols --output &quot;%25BASYX_REPO%25&quot; ) ELSE ( ECHO BASYX_REPO Environment Variable not found)" />
35 </Target>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010036
37</Project>