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.
38 lines
1.3 KiB
38 lines
1.3 KiB
5 years ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFrameworks>netstandard2.0; net35; net461</TargetFrameworks>
|
||
|
<ApplicationIcon />
|
||
|
<OutputTypeEx>library</OutputTypeEx>
|
||
|
<StartupObject />
|
||
|
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||
|
<DebugType>portable</DebugType>
|
||
|
<DebugSymbols>True</DebugSymbols>
|
||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||
|
<Authors>Michael Oborne</Authors>
|
||
|
<Company>Michael Oborne</Company>
|
||
|
<Description>MAVLink 1/2 for Ardupilot</Description>
|
||
|
<Version>1.0.5</Version>
|
||
|
<Copyright>Michael Oborne</Copyright>
|
||
|
<NeutralLanguage>en</NeutralLanguage>
|
||
|
<PackageLicenseUrl>GPLv3</PackageLicenseUrl>
|
||
|
<SignAssembly>true</SignAssembly>
|
||
|
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
|
||
|
<Configurations>Debug;Release;Test</Configurations>
|
||
|
<FileVersion>1.0.5.0</FileVersion>
|
||
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||
|
<RepositoryUrl>https://github.com/ArduPilot/MissionPlanner/tree/master/ExtLibs/Mavlink</RepositoryUrl>
|
||
|
<RepositoryType>Git</RepositoryType>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="mavlink\**" />
|
||
|
<Compile Remove="pymavlink\**" />
|
||
|
<EmbeddedResource Remove="mavlink\**" />
|
||
|
<EmbeddedResource Remove="pymavlink\**" />
|
||
|
<None Remove="mavlink\**" />
|
||
|
<None Remove="pymavlink\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
|
||
|
</Project>
|