blob: ebf86a257ad3903e5dabb212d71c91113ed70d5f [file] [log] [blame]
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="4.5.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BaSys40.API\BaSys40.API.csproj" />
<ProjectReference Include="..\BaSys40.Utils\BaSys40.Utils.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="RegistryClientSettings.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy &quot;$(ProjectDir)bin\Debug\BaSys40.Registry.Client.1.0.0.nupkg&quot; &quot;C:\Development\BaSys40\SDK\packages&quot; /Y" />
</Target>
</Project>