Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
Constantin Ziesche | 9ca8778 | 2020-04-03 12:06:02 +0200 | [diff] [blame] | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 5 | <Authors>Constantin Ziesche</Authors> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 6 | <Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 7 | <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 Asset Administration Shell Http Client</Description> |
| 11 | <Company>Robert Bosch GmbH</Company> |
| 12 | <PackageTags>BaSys BaSyx Asset Administration Shell Http Client</PackageTags> |
| 13 | <PackageLicenseExpression>EPL-2.0</PackageLicenseExpression> |
| 14 | <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> |
| 15 | <PackageIcon>basyxlogo.png</PackageIcon> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 16 | <LangVersion>8.0</LangVersion> |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 17 | <Configurations>Debug;Release</Configurations> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 18 | </PropertyGroup> |
| 19 | |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 20 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 21 | <DebugType>full</DebugType> |
| 22 | <DebugSymbols>true</DebugSymbols> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 23 | </PropertyGroup> |
| 24 | |
| 25 | <ItemGroup> |
| 26 | <None Include="..\..\resources\basyxlogo.png"> |
| 27 | <Pack>True</Pack> |
| 28 | <PackagePath></PackagePath> |
| 29 | </None> |
| 30 | </ItemGroup> |
| 31 | |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 32 | <ItemGroup> |
| 33 | <ProjectReference Include="..\..\basyx-core\BaSyx.API\BaSyx.API.csproj" /> |
| 34 | <ProjectReference Include="..\..\basyx-core\BaSyx.Utils.DependencyInjection\BaSyx.Utils.DependencyInjection.csproj" /> |
| 35 | </ItemGroup> |
| 36 | |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 37 | <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 38 | <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)" /> |
Constantin Ziesche | 857c7ab | 2020-02-25 11:24:51 +0100 | [diff] [blame] | 39 | </Target> |
| 40 | |
| 41 | </Project> |