-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
90 additions
and
2 deletions.
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
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
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,19 @@ | ||
<Project> | ||
<!-- ************************************************************** --> | ||
<!-- Common MSBuild targets --> | ||
<!-- ************************************************************** --> | ||
<!-- We aren't importing any of the standard MS targets/SDKs, so we need to define these targets | ||
so we can clean and rebuild from the command line as normal. --> | ||
<Target Name="Clean" /> | ||
<Target Name="Rebuild" DependsOnTargets="Clean;Build" /> | ||
|
||
<!-- No-op. Called by MSBuild when building other projects that reference this one. | ||
The empty targets don't seem to be needed when building inside VS, but command | ||
line builds fail if they are not defined (even though there are no explicit | ||
<ProjectReferences> to this project. --> | ||
<Target Name="BuiltProjectOutputGroup" /> | ||
<Target Name="BuiltProjectOutputGroupDependencies" /> | ||
<Target Name="GetCopyToOutputDirectoryItems" /> | ||
<Target Name="SatelliteDllsProjectOutputGroup" /> | ||
<Target Name="DebugSymbolsProjectOutputGroup" /> | ||
</Project> |
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,11 @@ | ||
<Project DefaultTargets="Build" ToolsVersion="Current"> | ||
<PropertyGroup> | ||
<ProjectGuid>{2BB16C6F-BF06-4225-99A0-F1CFE70CBE44}</ProjectGuid> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildThisFileDirectory)CommonMSBuild.targets" /> | ||
<Import Project="$(MSBuildThisFileDirectory)CopyDependencies.targets" /> | ||
<ItemGroup> | ||
<None Include="CommonMSBuild.targets" /> | ||
<None Include="CopyDependencies.targets" /> | ||
</ItemGroup> | ||
</Project> |
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 @@ | ||
<Project> | ||
<Import Project="..\..\src\EmbeddedSonarAnalyzer.props" /> | ||
|
||
<Target Name="Build"> | ||
<CallTarget Targets="ClearDirs" /> | ||
<CallTarget Targets="CopyJars" /> | ||
</Target> | ||
|
||
<PropertyGroup> | ||
<JarDownloadDir>$(LOCALAPPDATA)\SLVS_Build_DownloadedJars</JarDownloadDir> | ||
<EmbeddedJarDir>..\..\src\Integration.Vsix\DownloadedJars</EmbeddedJarDir> | ||
</PropertyGroup> | ||
|
||
|
||
<Target Name="ClearDirs"> | ||
<RemoveDir Directories="$(EmbeddedJarDir)" /> | ||
</Target> | ||
|
||
<Target Name="CopyJars"> | ||
<ItemGroup> | ||
<SourceJars Include="$(JarDownloadDir)\sonar-cfamily-plugin-$(EmbeddedSonarCFamilyAnalyzerVersion).jar" /> | ||
<SourceJars Include="$(JarDownloadDir)\sonar-csharp-plugin-$(EmbeddedSonarAnalyzerVersion).jar" /> | ||
<SourceJars Include="$(JarDownloadDir)\sonar-vbnet-plugin-$(EmbeddedSonarAnalyzerVersion).jar" /> | ||
<SourceJars Include="$(JarDownloadDir)\sonar-javascript-plugin-$(EmbeddedSonarJSAnalyzerVersion).jar" /> | ||
<SourceJars Include="$(JarDownloadDir)\sonar-text-plugin-$(EmbeddedSonarSecretsJarVersion).jar" /> | ||
</ItemGroup> | ||
<Copy SourceFiles ="@(SourceJars)" DestinationFolder="$(EmbeddedJarDir)" /> | ||
</Target> | ||
</Project> |
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
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