Skip to content

Commit

Permalink
#56 support 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jmecosta committed Mar 21, 2017
1 parent 60edf63 commit 5663c12
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions CxxSonarQubeMsbuidRunner/CxxSonarQubeMsbuidRunner.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<DocumentationFile>
</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<StartArguments>/k:Tekla.Tools.RoslynRunner /n:RoslynRunner /v:work /m=D:\Development\SonarQube\dotnet\sonar-roslyn-plugin\RoslynRunner\RoslynRunner.sln</StartArguments>
<StartArguments>/i</StartArguments>
</PropertyGroup>
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
Expand Down Expand Up @@ -84,28 +84,28 @@
<Private>True</Private>
</ProjectReference>
<Reference Include="FSharp.Data">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\FSharp.Data.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\FSharp.Data.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="FSharp.Data.DesignTime">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\FSharp.Data.DesignTime.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\FSharp.Data.DesignTime.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Build.Utilities.v4.0" />
<Reference Include="MsbuildAutomationHelper">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\MsbuildAutomationHelper.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\MsbuildAutomationHelper.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Private>True</Private>
</Reference>
<Reference Include="RestSharp">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\RestSharp.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\RestSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="SonarRestService">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\SonarRestService.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\SonarRestService.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -145,11 +145,11 @@
<Private>True</Private>
</ProjectReference>
<Reference Include="VSSonarPlugins">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\VSSonarPlugins.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\VSSonarPlugins.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="VSSonarQubeCmdExecutor">
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.0\lib\VSSonarQubeCmdExecutor.dll</HintPath>
<HintPath>..\packages\VSSonarExtensionPlugin3Api.6.1.1\lib\VSSonarQubeCmdExecutor.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion CxxSonarQubeMsbuidRunner/InstallationModule.fs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ let InstallCppLint() =
wc.DownloadFile("""https://raw.githubusercontent.com/SonarOpenCommunity/sonar-cxx-msbuild-tasks/master/Nuget/CppLint/cpplint_mod.py""", cpplintMod)
cpplintMod

let InstallRats() =
let InstallRats() =
Path.Combine(DownloadAndInstallZipDist("""https://github.com/SonarOpenCommunity/sonar-cxx-msbuild-tasks/raw/master/Nuget/rats.zip""", "RATS"), "rats.exe")

let InstallVera() =
Expand Down
2 changes: 1 addition & 1 deletion CxxSonarQubeMsbuidRunner/Options.fs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ type OptionsData(args : string []) =
if arguments.ContainsKey("r") then
arguments.["r"] |> Seq.head
else
"1.1"
"2.2"

let parentBranch =
if arguments.ContainsKey("b") then
Expand Down
4 changes: 2 additions & 2 deletions CxxSonarQubeMsbuidRunner/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ let main argv =
printf "Exception During Run: %s \r\n %s" ex.Message ex.StackTrace
ret <- 1


options.Clean()
options.DuplicateFalsePositives()

with
| ex ->
printf "Exception During Run: %s %s\r\n" ex.Message ex.StackTrace
ret <- 1



ret
2 changes: 1 addition & 1 deletion CxxSonarQubeMsbuidRunner/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="VSSonarExtensionPlugin3Api" version="6.1.0" targetFramework="net452" />
<package id="VSSonarExtensionPlugin3Api" version="6.1.1" targetFramework="net452" />
</packages>

0 comments on commit 5663c12

Please sign in to comment.