-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update supported Roslyn version to v4
Fixes #123 * removed manual binding redirects file * added dummy project with conflicting package resfs to force auto-regen of binding directs * enable end-to-end tests for Roslyn v3 and v4
- Loading branch information
duncanp-sonar
committed
Nov 17, 2021
1 parent
c6503c3
commit 274f9de
Showing
8 changed files
with
53 additions
and
102 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 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
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,33 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<!-- Dummy project referencing Roslyn v1 packaes. | ||
This project does not contain any code. | ||
It exists to force the exe project to automatically generate binding updates for the Roslyn | ||
assemblies for conflicting packages (the binding redirects won't be auto-generated unless | ||
there are conflicts). | ||
--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net48</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Features" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="1.0.0" /> | ||
|
||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="1.0.0" /> | ||
|
||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="1.0.0" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="1.0.0" /> | ||
</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
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