blob: 3e45716ba26a23037e1fc73ccf4f39d0898f79e2 [file] [log] [blame]
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01001<Project Sdk="Microsoft.NET.Sdk">
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01002 <PropertyGroup>
Constantin Ziesche9ca87782020-04-03 12:06:02 +02003 <TargetFramework>netstandard2.0</TargetFramework>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01004 <OutputType>Library</OutputType>
5 <Configurations>Debug;Release</Configurations>
6 <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01007 <Authors>Constantin Ziesche</Authors>
Constantin Zieschefa612082020-04-03 09:54:56 +02008 <Copyright>Copyright 2020 - Robert Bosch GmbH</Copyright>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01009 <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl>
10 <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010011 <Description>The official BaSyx Collection of Information Model Classes</Description>
12 <Company>Robert Bosch GmbH</Company>
13 <PackageTags>BaSys BaSyx Models</PackageTags>
14 <PackageLicenseExpression>EPL-2.0</PackageLicenseExpression>
15 <PackageIcon>basyxlogo.png</PackageIcon>
16 </PropertyGroup>
17
18 <ItemGroup>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010019 <None Include="basyxlogo.png" Pack="true" PackagePath="\" />
20 </ItemGroup>
21
22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23 <DebugType>Full</DebugType>
24 </PropertyGroup>
25
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010026
27 <ItemGroup>
Constantin Zieschefa612082020-04-03 09:54:56 +020028 <ProjectReference Include="..\BaSyx.Utils.DependencyInjection.Abstractions\BaSyx.Utils.DependencyInjection.Abstractions.csproj" />
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010029 <ProjectReference Include="..\BaSyx.Utils\BaSyx.Utils.csproj" />
30 </ItemGroup>
31
32 <Target Name="PostBuild" AfterTargets="PostBuildEvent">
33 <Exec Command="IF EXIST %25BASYX_REPO%25 ( dotnet pack &quot;$(ProjectPath)&quot; --no-build --include-source --include-symbols --output &quot;%25BASYX_REPO%25&quot; ) ELSE ( ECHO BASYX_REPO Environment Variable not found)" />
34 </Target>
35
36</Project>