forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtlogThumbnailHandler.csproj
41 lines (41 loc) · 1.72 KB
/
tlogThumbnailHandler.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<ApplicationIcon />
<StartupObject />
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<DebugSymbols>True</DebugSymbols>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Michael Oborne</Authors>
<Company>Michael Oborne</Company>
<Version>1.1</Version>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
</PropertyGroup>
<ItemGroup>
<Compile Remove="GMapImage.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="GMapImage.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Maps\MissionPlanner.Maps.csproj" />
<ProjectReference Include="..\MissionPlanner.Drawing\MissionPlanner.Drawing.csproj" Condition="'$(TargetFramework)' != 'netstandard2.0'">
<Aliases>Drawing</Aliases>
</ProjectReference>
<ProjectReference Include="..\MissionPlanner.Drawing\MissionPlanner.Drawing.csproj" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
<ProjectReference Include="..\Utilities\MissionPlanner.Utilities.csproj" />
</ItemGroup>
</Project>