Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 2 | <PropertyGroup> |
Constantin Ziesche | 9ca8778 | 2020-04-03 12:06:02 +0200 | [diff] [blame] | 3 | <TargetFramework>netstandard2.0</TargetFramework> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 4 | <OutputType>Library</OutputType> |
| 5 | <Configurations>Debug;Release</Configurations> |
| 6 | <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 7 | <Authors>Constantin Ziesche</Authors> |
Constantin Ziesche | 43b9ea0 | 2021-05-03 15:31:02 +0200 | [diff] [blame] | 8 | <Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 9 | <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl> |
| 10 | <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 11 | <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> |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 17 | |
| 18 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 19 | <DebugType>full</DebugType> |
| 20 | <DebugSymbols>true</DebugSymbols> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 21 | </PropertyGroup> |
| 22 | |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 23 | <ItemGroup> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 24 | <ProjectReference Include="..\BaSyx.Utils.DependencyInjection.Abstractions\BaSyx.Utils.DependencyInjection.Abstractions.csproj" /> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 25 | <ProjectReference Include="..\BaSyx.Utils\BaSyx.Utils.csproj" /> |
| 26 | </ItemGroup> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 27 | |
Constantin Ziesche | 43b9ea0 | 2021-05-03 15:31:02 +0200 | [diff] [blame] | 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 "$(ProjectPath)" -c Release --no-build --include-source --include-symbols --output "%25BASYX_REPO%25" ) ELSE ( ECHO BASYX_REPO Environment Variable not found)" /> |
| 37 | </Target> |
| 38 | |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 39 | </Project> |