Skip to content

Commit

Permalink
Remove couple of accidental unncessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mavasani committed Dec 6, 2017
1 parent 5817c2f commit b71a93e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@
<ProjectReference Include="..\CSharp\Microsoft.NetCore.CSharp.Analyzers.csproj" />
<ProjectReference Include="..\VisualBasic\Microsoft.NetCore.VisualBasic.Analyzers.vbproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Composition\" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Test.Utilities/DiagnosticAnalyzerTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public abstract class DiagnosticAnalyzerTestBase
private static readonly MetadataReference s_visualBasicReference = MetadataReference.CreateFromFile(typeof(Microsoft.VisualBasic.Devices.ComputerInfo).Assembly.Location);
private static readonly MetadataReference s_codeAnalysisReference = MetadataReference.CreateFromFile(typeof(Compilation).Assembly.Location);
private static readonly MetadataReference s_workspacesReference = MetadataReference.CreateFromFile(typeof(Workspace).Assembly.Location);
private static readonly MetadataReference s_systemDiagnosticsDebugReference = MetadataReference.CreateFromFile(typeof(Debug).Assembly.Location);
private static readonly MetadataReference s_immutableCollectionsReference = MetadataReference.CreateFromFile(typeof(ImmutableArray<int>).Assembly.Location);
private static readonly MetadataReference s_systemDiagnosticsDebugReference = MetadataReference.CreateFromFile(typeof(Debug).Assembly.Location);
private static readonly MetadataReference s_systemDataReference = MetadataReference.CreateFromFile(typeof(System.Data.DataSet).Assembly.Location);
protected static readonly CompilationOptions s_CSharpDefaultOptions = new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary);
protected static readonly CompilationOptions s_CSharpUnsafeCodeDefaultOptions = new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary).WithAllowUnsafe(true);
Expand Down

0 comments on commit b71a93e

Please sign in to comment.