forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into RFD900ToolsForPullRequest
- Loading branch information
Showing
6,593 changed files
with
1,605,920 additions
and
266,062 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[*.cs] | ||
|
||
# CA1707: Identifiers should not contain underscores | ||
dotnet_diagnostic.CA1707.severity = suggestion | ||
|
||
# CA2211: Non-constant fields should not be visible | ||
dotnet_diagnostic.CA2211.severity = suggestion | ||
|
||
# CA1062: Validate arguments of public methods | ||
dotnet_diagnostic.CA1062.severity = suggestion | ||
|
||
# CA1303: Do not pass literals as localized parameters | ||
dotnet_diagnostic.CA1303.severity = suggestion | ||
|
||
# CA1305: Specify IFormatProvider | ||
dotnet_diagnostic.CA1305.severity = suggestion | ||
|
||
# CA1031: Do not catch general exception types | ||
dotnet_diagnostic.CA1031.severity = suggestion | ||
|
||
# CA1304: Specify CultureInfo | ||
dotnet_diagnostic.CA1304.severity = suggestion | ||
|
||
# CA1051: Do not declare visible instance fields | ||
dotnet_diagnostic.CA1051.severity = silent | ||
|
||
# CA1712: Do not prefix enum values with type name | ||
dotnet_diagnostic.CA1712.severity = silent | ||
|
||
# CA1307: Specify StringComparison | ||
dotnet_diagnostic.CA1307.severity = suggestion | ||
|
||
# CA1815: Override equals and operator equals on value types | ||
dotnet_diagnostic.CA1815.severity = silent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: GitHub CI | ||
on: push | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Build | ||
shell: pwsh | ||
run: | | ||
$msbuildPath = Split-Path (& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -latest -requires Microsoft.Component.MSBuild -find MSBuild\Current\Bin\amd64\MSBuild.exe | Select-Object -First 1) -Parent | ||
$env:PATH = $msbuildPath + ';' + $env:PATH | ||
msbuild -v:m -restore -t:Build -p:Configuration=Release MissionPlanner.sln | ||
- name: Cleanup | ||
shell: pwsh | ||
run: | | ||
cd bin\Release\net461 | ||
gci plugins | ForEach-Object { if (Test-Path $_.Name -PathType Leaf) { Write-Host "Remove" $_.FullName ; Remove-Item $_.FullName } else { Write-Host $_.Name } } | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: MissionPlannerBeta | ||
path: bin\Release\net461 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,26 @@ | ||
*.pfx | ||
*.suo | ||
*.user | ||
bin/ | ||
obj/ | ||
/CustomImages | ||
/APMPlannerXplanes/APMPlannerXplanes/Debug | ||
/APMPlannerXplanes/Debug | ||
/Driver/makecert.exe | ||
/Drivers/gencert.bat | ||
/Drivers/int2cat.bat | ||
/Drivers/makecert.exe | ||
/Drivers/signing.url | ||
/Msi | ||
/packages | ||
*.psess | ||
/copy.bat | ||
/macos.bat | ||
/logo.png | ||
*.vsp | ||
/sitl | ||
/cov-int | ||
*.pyc | ||
*.ncrunchproject | ||
*.crunchsolution.cache | ||
*.ncrunchsolution | ||
/Plugins/AltitudeAngelWings/AltitudeAngelWings/Keys.config | ||
/ExtLibs/Mavlink/Mavlink.cs | ||
/ExtLibs/Mavlink/mavlink | ||
/LogAnalyzer/LogAnalyzer.zip | ||
/LogAnalyzer/py2exe/dist | ||
/LogAnalyzer/py2exe/build | ||
/LogAnalyzer/LogAnalyzer64.zip | ||
/gstream | ||
/MissionPlanner.appx | ||
/AltitudeAngelWings.sln | ||
/appxkey.cer | ||
/ExtLibs/Portable/Portable | ||
/ExtLibs/AltitudeAngelWings/Keys.config | ||
/MissionPlannerBeta.zip | ||
*.vspx | ||
/ExtLibs/Android | ||
/ExtLibs/w3w | ||
/ExtLibs/java | ||
/ExtLibs/netcore | ||
/.vs | ||
/ExtLibs/Zeroconf | ||
RFD900ToolsSetup/Debug/RFD900ModelToolsSetup.msi | ||
/ExtLibs/GMap.NET.Core/GMap.NET.Core2.csproj | ||
/ExtLibs/GDAL/GDAL2.csproj | ||
/ExtLibs/Core/Core2.csproj | ||
/ExtLibs/Comms/MissionPlanner.Comms2.csproj | ||
/ExtLibs/BaseClasses/BaseClasses2.csproj | ||
/ExtLibs/AviFile/AviFile2.csproj | ||
/ExtLibs/Arduino/Arduino2.csproj | ||
/ExtLibs/GeoUtility/GeoUtility2.csproj | ||
/MissionPlanner2.csproj | ||
/ExtLibs/Mavlink/MAVLink2.csproj | ||
/ExtLibs/Utilities/MissionPlanner.Utilities2.csproj | ||
/Plugins/Shortcuts | ||
/test | ||
/ExtLibs/GDAL/Native/gdal | ||
/ExtLibs/SimpleExample/packages | ||
/ExtLibs/SimpleExample/.vs | ||
*.pfx | ||
*.suo | ||
*.user | ||
bin/ | ||
obj/ | ||
.vs/ | ||
/Msi | ||
packages/ | ||
*.psess | ||
*.pyc | ||
/ExtLibs/Mavlink/mavlink | ||
/LogAnalyzer/py2exe/ | ||
*.vspx | ||
*.appx | ||
*.zip | ||
/Drivers/gencert.bat | ||
/Drivers/makecert.exe | ||
/Drivers/signing.url | ||
/ExtLibs/Zeroconf | ||
/ExtLibs/wasm/wwwroot/2018-09-09 18-15-17.txt | ||
/ExtLibs/Test | ||
/ExtLibs/AltitudeAngelWings/Keys.config | ||
/Drivers/DriverCleanup.pdb | ||
/Drivers/DriverCleanup.exe.config | ||
/Drivers/DriverCleanup.exe | ||
/objcore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "ExtLibs/mono"] | ||
path = ExtLibs/mono | ||
url = https://github.com/meee1/mono.git | ||
branch = master2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.