Skip to content

Commit

Permalink
enable signing
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Mar 9, 2017
1 parent 3eea2e5 commit 074d694
Show file tree
Hide file tree
Showing 50 changed files with 489 additions and 396 deletions.
7 changes: 7 additions & 0 deletions ExtLibs/AltitudeAngelWings/AltitudeAngelWings.csproj
Expand Up @@ -42,6 +42,12 @@
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="DotNetOpenAuth.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetOpenAuth.Core.4.3.3.13295\lib\net40-full\DotNetOpenAuth.Core.dll</HintPath>
Expand Down Expand Up @@ -179,6 +185,7 @@
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="mykey.snk" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
Expand Down
4 changes: 2 additions & 2 deletions ExtLibs/AltitudeAngelWings/Service/AltitudeAngelService.cs
Expand Up @@ -85,12 +85,12 @@ FlightDataService flightDataService
_disposer.Add(_missionPlanner.FlightDataMap
.MapChanged
.Throttle(TimeSpan.FromSeconds(1))
.Subscribe(i => UpdateMapData(_missionPlanner.FlightDataMap)));
.Subscribe(async i => await UpdateMapData(_missionPlanner.FlightDataMap)));

_disposer.Add(_missionPlanner.FlightPlanningMap
.MapChanged
.Throttle(TimeSpan.FromSeconds(1))
.Subscribe(i => UpdateMapData(_missionPlanner.FlightPlanningMap)));
.Subscribe(async i => await UpdateMapData(_missionPlanner.FlightPlanningMap)));

try
{
Expand Down
Binary file added ExtLibs/AltitudeAngelWings/mykey.snk
Binary file not shown.
3 changes: 3 additions & 0 deletions ExtLibs/AviFile/AviFile.csproj
Expand Up @@ -46,6 +46,9 @@
<RemoveIntegerChecks>false</RemoveIntegerChecks>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Reference Include="System">
<Name>System</Name>
Expand Down
9 changes: 9 additions & 0 deletions ExtLibs/Comms/MissionPlanner.Comms.csproj
Expand Up @@ -32,6 +32,12 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>..\..\ExtLibs\log4net.dll</HintPath>
Expand Down Expand Up @@ -67,6 +73,9 @@
<Name>MissionPlanner.Controls</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="mykey.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
Binary file added ExtLibs/Comms/mykey.snk
Binary file not shown.
7 changes: 7 additions & 0 deletions ExtLibs/Controls/MissionPlanner.Controls.csproj
Expand Up @@ -31,6 +31,12 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>..\..\ExtLibs\log4net.dll</HintPath>
Expand Down Expand Up @@ -306,6 +312,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="mykey.snk" />
<None Include="Resources\iconWarning32.png" />
</ItemGroup>
<ItemGroup>
Expand Down
Binary file added ExtLibs/Controls/mykey.snk
Binary file not shown.
6 changes: 5 additions & 1 deletion ExtLibs/Core/Core.csproj
Expand Up @@ -48,7 +48,10 @@
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.pfx</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -106,6 +109,7 @@
</ItemGroup>
<ItemGroup>
<None Include="mykey.pfx" />
<None Include="mykey.snk" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Binary file added ExtLibs/Core/mykey.snk
Binary file not shown.
7 changes: 7 additions & 0 deletions ExtLibs/GDAL/GDAL.csproj
Expand Up @@ -34,6 +34,12 @@
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="gdalconst_csharp, Version=1.0.5387.28601, Culture=neutral, PublicKeyToken=db5a52b08dc5b321, processorArchitecture=MSIL">
<HintPath>..\..\packages\GDAL.1.11.1\lib\net40\gdalconst_csharp.dll</HintPath>
Expand Down Expand Up @@ -73,6 +79,7 @@
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="mykey.snk" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
Binary file added ExtLibs/GDAL/mykey.snk
Binary file not shown.
2 changes: 1 addition & 1 deletion ExtLibs/GMap.NET.Core/GMap.NET.Core.csproj
Expand Up @@ -38,7 +38,7 @@
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;MONO; MySQL_disabled; PostgreSQL_disabled; noSQLite</DefineConstants>
<DebugType>full</DebugType>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisLogFile>bin\x86\Debug\GMap.NET.Core.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
Expand Down
3 changes: 1 addition & 2 deletions ExtLibs/GMap.NET.Core/Properties/AssemblyInfo.cs
Expand Up @@ -24,8 +24,7 @@
#endif
InternalsVisibleTo("GMap.NET.WindowsForms, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cd251b0b8f7079914bbe3e5655d92e5427218f3f0241537a9cb7467b6da2aa5cb20915c31400800e3081d20e6454a35164600fe8bf4f846744f211e040588260cc872c78abd91b422c60071bfda5f11d251eb09f0935944b41de2a28374ad17e8c963d642310df9050e8ae0f1a2b867bcc8f035e4b353dc699cfc7125b9661ce"),
InternalsVisibleTo("GMap.NET.WindowsMobile, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cd251b0b8f7079914bbe3e5655d92e5427218f3f0241537a9cb7467b6da2aa5cb20915c31400800e3081d20e6454a35164600fe8bf4f846744f211e040588260cc872c78abd91b422c60071bfda5f11d251eb09f0935944b41de2a28374ad17e8c963d642310df9050e8ae0f1a2b867bcc8f035e4b353dc699cfc7125b9661ce"),
InternalsVisibleTo("GMap.NET.WindowsPresentation, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cd251b0b8f7079914bbe3e5655d92e5427218f3f0241537a9cb7467b6da2aa5cb20915c31400800e3081d20e6454a35164600fe8bf4f846744f211e040588260cc872c78abd91b422c60071bfda5f11d251eb09f0935944b41de2a28374ad17e8c963d642310df9050e8ae0f1a2b867bcc8f035e4b353dc699cfc7125b9661ce"),
InternalsVisibleTo("MissionPlanner, PublicKey=null")
InternalsVisibleTo("GMap.NET.WindowsPresentation, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cd251b0b8f7079914bbe3e5655d92e5427218f3f0241537a9cb7467b6da2aa5cb20915c31400800e3081d20e6454a35164600fe8bf4f846744f211e040588260cc872c78abd91b422c60071bfda5f11d251eb09f0935944b41de2a28374ad17e8c963d642310df9050e8ae0f1a2b867bcc8f035e4b353dc699cfc7125b9661ce")
]

// Version information for an assembly consists of the following four values:
Expand Down
2 changes: 1 addition & 1 deletion ExtLibs/GMap.NET.WindowsForms/GMap.NET.WindowsForms.csproj
Expand Up @@ -22,7 +22,7 @@
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;ContinuesMapNo</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<CodeAnalysisLogFile>bin\x86\Debug\GMap.NET.WindowsForms.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
Expand Down
5 changes: 3 additions & 2 deletions ExtLibs/GeoUtility/GeoUtility.csproj
Expand Up @@ -10,8 +10,8 @@
<AssemblyName>GeoUtility</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Resources\geoutility.pfx</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
<ApplicationIcon>Resources\earthpointer.ico</ApplicationIcon>
<FileUpgradeFlags>
</FileUpgradeFlags>
Expand Down Expand Up @@ -112,6 +112,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="mykey.snk" />
<None Include="Resources\geoutility.pfx" />
</ItemGroup>
<ItemGroup>
Expand Down
Binary file added ExtLibs/GeoUtility/mykey.snk
Binary file not shown.
9 changes: 0 additions & 9 deletions ExtLibs/Grid/MissionPlanner.Grid.csproj
Expand Up @@ -39,10 +39,6 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="AStar">
<HintPath>..\..\ExtLibs\AStar.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll</HintPath>
<Private>True</Private>
Expand Down Expand Up @@ -118,11 +114,6 @@
<Name>MissionPlanner</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\Comms\MissionPlanner.Comms.csproj">
<Project>{825E7A10-390C-4A2B-B3A8-491D14966912}</Project>
<Name>MissionPlanner.Comms</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\Controls\MissionPlanner.Controls.csproj">
<Project>{C8B88795-6D01-494D-83AD-6944BD4C5023}</Project>
<Name>MissionPlanner.Controls</Name>
Expand Down
6 changes: 5 additions & 1 deletion ExtLibs/KMLib/KMLib.csproj
Expand Up @@ -49,7 +49,10 @@
<WarningLevel>0</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.pfx</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -103,6 +106,7 @@
<Compile Include="Support\Wrappers.cs" />
<Compile Include="TimeSpan.cs" />
<Compile Include="TimeStamp.cs" />
<None Include="mykey.snk" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
Expand Down
Binary file added ExtLibs/KMLib/mykey.snk
Binary file not shown.
7 changes: 7 additions & 0 deletions ExtLibs/LibVLC.NET/LibVLC.NET.csproj
Expand Up @@ -57,6 +57,12 @@
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
Expand Down Expand Up @@ -92,6 +98,7 @@
</ItemGroup>
<ItemGroup>
<None Include="COPYING" />
<None Include="mykey.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Binary file added ExtLibs/LibVLC.NET/mykey.snk
Binary file not shown.
121 changes: 64 additions & 57 deletions ExtLibs/ManagedNativeWifi.Simple/ManagedNativeWifi.Simple.csproj
@@ -1,64 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CCE510F7-1DA6-40F2-8921-B86ED41BB85E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ManagedNativeWifi.Simple</RootNamespace>
<AssemblyName>ManagedNativeWifi.Simple</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="NativeWifi.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CCE510F7-1DA6-40F2-8921-B86ED41BB85E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ManagedNativeWifi.Simple</RootNamespace>
<AssemblyName>ManagedNativeWifi.Simple</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="NativeWifi.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<None Include="mykey.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
-->
</Project>
Binary file added ExtLibs/ManagedNativeWifi.Simple/mykey.snk
Binary file not shown.
7 changes: 7 additions & 0 deletions ExtLibs/Mavlink/MAVLink.csproj
Expand Up @@ -32,6 +32,12 @@
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net">
<HintPath>..\log4net.dll</HintPath>
Expand Down Expand Up @@ -88,6 +94,7 @@
<Content Include="pymavlink\__init__.py" />
</ItemGroup>
<ItemGroup>
<None Include="mykey.snk" />
<None Include="pymavlink\generator\lib\minixsv\datatypes.xsd">
<SubType>Designer</SubType>
</None>
Expand Down
Binary file added ExtLibs/Mavlink/mykey.snk
Binary file not shown.

0 comments on commit 074d694

Please sign in to comment.