You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
931 B
30 lines
931 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="cd "$(TargetDir)"
"$(SolutionDir)\SecureUpload.exe" . pi-hslu:ADIS/$(ProjectName)" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="M2MqttClientDotnetCore" Version="1.0.1" />
|
|
<PackageReference Include="Unosquare.Raspberry.IO" Version="0.27.1" />
|
|
<PackageReference Include="Unosquare.WiringPi" Version="0.5.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\RobotLib\RobotLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="NLog.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|