<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>netstandard2.0</TargetFramework> | |
<OutputType>Library</OutputType> | |
<Configurations>Debug;Release</Configurations> | |
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> | |
<Authors>Constantin Ziesche</Authors> | |
<Copyright>Copyright 2021 - Robert Bosch GmbH</Copyright> | |
<PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl> | |
<RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl> | |
<Description>The official BaSyx Collection of Information Model Classes</Description> | |
<Company>Robert Bosch GmbH</Company> | |
<PackageTags>BaSys BaSyx Models</PackageTags> | |
<PackageLicenseExpression>EPL-2.0</PackageLicenseExpression> | |
<PackageIcon>basyxlogo.png</PackageIcon> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | |
<DebugType>full</DebugType> | |
<DebugSymbols>true</DebugSymbols> | |
</PropertyGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\BaSyx.Utils.DependencyInjection.Abstractions\BaSyx.Utils.DependencyInjection.Abstractions.csproj" /> | |
<ProjectReference Include="..\BaSyx.Utils\BaSyx.Utils.csproj" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Include="..\..\resources\basyxlogo.png"> | |
<Pack>True</Pack> | |
<PackagePath></PackagePath> | |
</None> | |
</ItemGroup> | |
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
<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)" /> | |
</Target> | |
</Project> |