Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | |
| 3 | <PropertyGroup> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 4 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 5 | <OutputType>Library</OutputType> |
| 6 | <Authors>Constantin Ziesche</Authors> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 7 | <Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 8 | <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl> |
| 9 | <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl> |
| 10 | <PackageLicenseUrl></PackageLicenseUrl> |
| 11 | <Description>The official BaSyx HTTP Controller AASX Package Service</Description> |
| 12 | <Company>Robert Bosch GmbH</Company> |
| 13 | <PackageTags>BaSys BaSyx HTTP API Controllers AASX Package</PackageTags> |
| 14 | <PackageLicenseExpression>EPL-2.0</PackageLicenseExpression> |
| 15 | <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> |
| 16 | <PackageIcon>basyxlogo.png</PackageIcon> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 17 | <LangVersion>8.0</LangVersion> |
Constantin Ziesche | 0399d41 | 2020-09-24 14:31:15 +0200 | [diff] [blame] | 18 | <GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 19 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 20 | <IsPackable>true</IsPackable> |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 21 | <Configurations>Debug;Release</Configurations> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 22 | </PropertyGroup> |
| 23 | |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 24 | <ItemGroup> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 25 | <EmbeddedResource Include="$(AssemblyName).xml" /> |
Constantin Ziesche | 9ca8778 | 2020-04-03 12:06:02 +0200 | [diff] [blame] | 26 | </ItemGroup> |
| 27 | |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 28 | <PropertyGroup> |
| 29 | <DocumentationFile>$(AssemblyName).xml</DocumentationFile> |
| 30 | </PropertyGroup> |
| 31 | |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 32 | <ItemGroup> |
Constantin Ziesche | ce27660 | 2020-10-27 09:36:00 +0100 | [diff] [blame] | 33 | <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" /> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 34 | <PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="5.0.5" /> |
Constantin Ziesche | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 35 | </ItemGroup> |
| 36 | |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 37 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 38 | <DebugType>full</DebugType> |
| 39 | <DebugSymbols>true</DebugSymbols> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 40 | </PropertyGroup> |
| 41 | |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 42 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugWithNuGet|AnyCPU'"> |
| 43 | <DebugType>full</DebugType> |
| 44 | <DebugSymbols>true</DebugSymbols> |
| 45 | </PropertyGroup> |
| 46 | |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 47 | <ItemGroup> |
| 48 | <None Include="..\..\resources\basyxlogo.png"> |
| 49 | <Pack>True</Pack> |
| 50 | <PackagePath></PackagePath> |
| 51 | </None> |
| 52 | </ItemGroup> |
Constantin Ziesche | 8cb6a29 | 2021-06-23 00:48:17 +0200 | [diff] [blame^] | 53 | |
| 54 | <ItemGroup> |
| 55 | <ProjectReference Include="..\..\basyx-core\BaSyx.API\BaSyx.API.csproj" /> |
| 56 | <ProjectReference Include="..\..\basyx-core\BaSyx.Models.Export\BaSyx.Models.Export.csproj" /> |
| 57 | </ItemGroup> |
Constantin Ziesche | 8ef04aa | 2021-05-03 15:31:29 +0200 | [diff] [blame] | 58 | |
| 59 | <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
| 60 | <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 | fa61208 | 2020-04-03 09:54:56 +0200 | [diff] [blame] | 61 | </Target> |
| 62 | |
| 63 | </Project> |