blob: aedc6998976b0f1b644ba1131cf3becc79862f69 [file] [log] [blame]
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01001<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>netstandard2.0</TargetFramework>
5 <OutputType>Library</OutputType>
6 <Configurations>Debug;Release</Configurations>
7 <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
8 <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
9 <Authors>Constantin Ziesche</Authors>
10 <Copyright>Copyright 2019 - Robert Bosch GmbH</Copyright>
11 <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl>
12 <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl>
13 <PackageLicenseUrl></PackageLicenseUrl>
14 <Description>The official BaSyx Collection of Information Model Classes</Description>
15 <Company>Robert Bosch GmbH</Company>
16 <PackageTags>BaSys BaSyx Models</PackageTags>
17 <PackageLicenseExpression>EPL-2.0</PackageLicenseExpression>
18 <PackageIcon>basyxlogo.png</PackageIcon>
19 </PropertyGroup>
20
21 <ItemGroup>
22 <None Remove="AAS.xsd" />
23 <None Remove="AAS_ABAC.xsd" />
24 <None Remove="IEC61360.xsd" />
25 </ItemGroup>
26
27 <ItemGroup>
28 <None Include="basyxlogo.png" Pack="true" PackagePath="\" />
29 </ItemGroup>
30
31 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32 <DebugType>Full</DebugType>
33 </PropertyGroup>
34
35 <ItemGroup>
36 <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
37 <PackageReference Include="System.IO.Packaging" Version="4.7.0" />
38 </ItemGroup>
39
40 <ItemGroup>
41 <ProjectReference Include="..\BaSyx.Utils\BaSyx.Utils.csproj" />
42 </ItemGroup>
43
44 <Target Name="PostBuild" AfterTargets="PostBuildEvent">
45 <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)" />
46 </Target>
47
48</Project>