2 types derived from ManagedCompiler
Microsoft.Build.Tasks.CodeAnalysis.Sdk (2)
src\Compilers\Core\MSBuildTask\Csc.cs (1)
27public class Csc : ManagedCompiler
src\Compilers\Core\MSBuildTask\Vbc.cs (1)
28public class Vbc : ManagedCompiler
7 references to ManagedCompiler
Microsoft.Build.Tasks.CodeAnalysis.Sdk (3)
src\Compilers\Core\MSBuildTask\Csc.cs (1)
211var rspFile = Path.Combine(Path.GetDirectoryName(typeof(ManagedCompiler).Assembly.Location)!, "csc.rsp");
src\Compilers\Core\MSBuildTask\InteractiveCompiler.cs (1)
204ManagedCompiler.AddFeatures(commandLine, Features);
src\Compilers\Core\MSBuildTask\Vbc.cs (1)
395var rspFile = Path.Combine(Path.GetDirectoryName(typeof(ManagedCompiler).Assembly.Location)!, "vbc.rsp");
Microsoft.Build.Tasks.CodeAnalysis.Sdk.UnitTests (4)
CscTests.cs (1)
15private static string RspFilePath => Path.Combine(Path.GetDirectoryName(typeof(ManagedCompiler).Assembly.Location)!, "csc.rsp");
SdkManagedToolTests.cs (1)
23var taskPath = Path.GetDirectoryName(typeof(ManagedCompiler).Assembly.Location)!;
src\Compilers\Core\MSBuildTaskTests\TestUtilities\IntegrationTestBase.cs (1)
42_buildTaskDll = typeof(ManagedCompiler).Assembly.Location;
VbcTests.cs (1)
15private static string RspFilePath => Path.Combine(Path.GetDirectoryName(typeof(ManagedCompiler).Assembly.Location)!, "vbc.rsp");