blob: 70352376c978e1a7ea78f69efe7fcf5dd215b0ea [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 Ziesche8cb6a292021-06-23 00:48:17 +020016 <Configurations>Debug;Release</Configurations>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010017 </PropertyGroup>
18
Constantin Ziesche8cb6a292021-06-23 00:48:17 +020019 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
20 <DebugType>full</DebugType>
21 <DebugSymbols>true</DebugSymbols>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010022 </PropertyGroup>
23
24 <ItemGroup>
25 <ProjectReference Include="..\BaSyx.Models\BaSyx.Models.csproj" />
26 </ItemGroup>
Constantin Ziesche43b9ea02021-05-03 15:31:02 +020027
28 <ItemGroup>
29 <None Include="..\..\resources\basyxlogo.png">
30 <Pack>True</Pack>
31 <PackagePath></PackagePath>
32 </None>
33 </ItemGroup>
34
35 <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36 <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)" />
37 </Target>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010038
39</Project>