blob: a9448f9189f7d72ac9ba046a7fd857023f6a3c31 [file] [log] [blame]
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01001<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
Constantin Ziesche9ca87782020-04-03 12:06:02 +02004 <TargetFramework>netstandard2.0</TargetFramework>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01005 <Authors>Constantin Ziesche</Authors>
Constantin Ziesche8ef04aa2021-05-03 15:31:29 +02006 <Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01007 <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 Zieschece276602020-10-27 09:36:00 +010016 <LangVersion>8.0</LangVersion>
Constantin Ziesche8cb6a292021-06-23 00:48:17 +020017 <Configurations>Debug;Release</Configurations>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010018 </PropertyGroup>
19
Constantin Ziesche8cb6a292021-06-23 00:48:17 +020020 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
21 <DebugType>full</DebugType>
22 <DebugSymbols>true</DebugSymbols>
Constantin Ziesche8ef04aa2021-05-03 15:31:29 +020023 </PropertyGroup>
24
25 <ItemGroup>
26 <None Include="..\..\resources\basyxlogo.png">
27 <Pack>True</Pack>
28 <PackagePath></PackagePath>
29 </None>
30 </ItemGroup>
31
Constantin Ziesche8cb6a292021-06-23 00:48:17 +020032 <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 Ziesche8ef04aa2021-05-03 15:31:29 +020037 <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
38 <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)" />
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010039 </Target>
40
41</Project>