blob: 3e45716ba26a23037e1fc73ccf4f39d0898f79e2 [file] [log] [blame]
<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 2020 - 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>
<ItemGroup>
<None Include="basyxlogo.png" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>Full</DebugType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BaSyx.Utils.DependencyInjection.Abstractions\BaSyx.Utils.DependencyInjection.Abstractions.csproj" />
<ProjectReference Include="..\BaSyx.Utils\BaSyx.Utils.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<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)" />
</Target>
</Project>