-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved Roslyn Analyzers to project.json
Introduced two new "dependency" projects that make use of NuGet package inheritance to unify references to Roslyn and xUnit. For example to move the tree to a newer version of Roslyn, you just need to modify Dependencies\CodeAnalysis\project.json, and rerun "NuGet restore".
- Loading branch information
Showing
218 changed files
with
1,252 additions
and
6,112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" /> | ||
|
||
<PropertyGroup> | ||
<TargetPath></TargetPath> <!-- Prevent projects referencing this from trying to pass us to the compiler --> | ||
</PropertyGroup> | ||
|
||
<Target Name="CoreCompile" /> <!-- Prevent Csc from being called --> | ||
<Target Name="CopyFilesToOutputDirectory" /> <!-- Prevent non-existent output from being copied --> | ||
<Target Name="GenerateTargetFrameworkMonikerAttribute" /> <!-- Don't generate TFM attribute --> | ||
<Target Name="RuntimeImplementationProjectOutputGroup" /> <!-- Group always attempts resolve runtime, regardless of <CopyNuGetImplementations>--> | ||
|
||
</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,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
|
||
<PropertyGroup> | ||
<CopyNuGetImplementations>false</CopyNuGetImplementations> | ||
<UseCommonOutputDirectory>true</UseCommonOutputDirectory> | ||
<OutputPath>bin</OutputPath> | ||
<OutputType>Library</OutputType> | ||
<TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<TargetFrameworkProfile>Profile7</TargetFrameworkProfile> | ||
</PropertyGroup> | ||
|
||
</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 was deleted.
Oops, something went wrong.
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,7 @@ | ||
{ | ||
"dependencies": { | ||
}, | ||
"frameworks": { | ||
".NETPortable, Version=v4.5, Profile=Profile7": { } | ||
} | ||
} |
Oops, something went wrong.