├── .gitattributes ├── .gitignore ├── BinlogOrGtfo.png ├── ExcludeAnalyzer.proj ├── GitRevision.proj ├── InlineTask.proj ├── LICENSE ├── LogFileCopy.targets ├── MSBuildBatSignal.png ├── MSBuildTools.sln ├── MakeRelativeItems.proj ├── README.md ├── Snippets ├── ConcatFiles.proj ├── CopyToOutputSubdirectory.csproj ├── FilterItemGroup.proj ├── GenerateLargeSolution.cs ├── InlineTask.proj └── TaskBatchingAndDuplicateItems.proj ├── copy.proj ├── msvc_toolset_cheatsheet.md ├── repro └── 8075 │ ├── Task │ ├── Class1.cs │ └── Task.csproj │ ├── Test.proj │ └── silly │ ├── Program.cs │ └── silly.csproj ├── src ├── AtlInclude │ └── atlinclude.nuspec ├── CallProjectReferenceExe │ ├── CallProjectReferenceExe.sln │ ├── Consumer │ │ └── Consumer.csproj │ └── ExeProject │ │ ├── ExeProject.csproj │ │ └── Program.cs ├── CodeTaskFactory │ └── CodeTaskFactorySample.proj ├── ErrorLogger │ ├── ErrorLogger.cs │ └── ErrorLogger.csproj ├── Evaluation │ ├── Eval.cs │ ├── MultiProjectEval.cs │ ├── Reflector.cs │ └── eval.csproj ├── FindDoubleWrites │ ├── FindDoubleWrites.cs │ ├── FindDoubleWrites.csproj │ └── LogFileCopy.targets ├── GenerateCs │ ├── GenerateCs.csproj │ └── Program.cs ├── LegacyCsprojRefAssemblies │ ├── LegacyCsprojRefAssemblies.csproj │ ├── Program.cs │ └── packages.config ├── MSBuildDumper │ ├── MSBuildDumper.cs │ ├── MSBuildDumper.csproj │ └── MSBuildDumper.nuspec ├── PackNuspec │ ├── Icon.png │ ├── PackNuspec.csproj │ ├── Sample.nuspec │ └── readme.md ├── PackP2P │ ├── A │ │ ├── A.csproj │ │ └── A.targets │ └── B │ │ └── B.csproj ├── ProjectReferenceGraph │ ├── Program.cs │ └── ProjectReferenceGraph.csproj ├── SampleSourceGenerator │ ├── Consumer │ │ ├── Consumer.csproj │ │ └── Program.cs │ ├── Generator │ │ ├── Generator.cs │ │ └── Generator.csproj │ ├── SampleSourceGenerator.sln │ └── readme.md ├── SampleTask │ ├── Sample.proj │ ├── SampleTask.cs │ └── SampleTask.csproj ├── SimpleResource │ ├── Program.cs │ ├── SimpleResource.csproj │ └── embedded.txt ├── SlnFilter │ ├── IncludeExcludePattern.cs │ ├── LineScanner.cs │ ├── Program.cs │ ├── ProjectInSolution.cs │ ├── SectionBlock.cs │ ├── SlnFilter.csproj │ ├── SolutionFile.cs │ └── SolutionFileParserResources.cs ├── TaskInSolution │ ├── Consumer │ │ ├── Consumer.csproj │ │ └── Input1.txt │ ├── Dependency │ │ ├── Dependency.cs │ │ └── Dependency.csproj │ ├── Task │ │ ├── Task.cs │ │ ├── Task.csproj │ │ └── Task.targets │ └── TaskInSolution.sln ├── ToolsetLayout │ ├── Program.cs │ └── ToolsetLayout.csproj └── rcexe │ └── rcexe.nuspec └── test ├── InlineTask.proj ├── Multiproc.proj └── Task.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/.gitignore -------------------------------------------------------------------------------- /BinlogOrGtfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/BinlogOrGtfo.png -------------------------------------------------------------------------------- /ExcludeAnalyzer.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/ExcludeAnalyzer.proj -------------------------------------------------------------------------------- /GitRevision.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/GitRevision.proj -------------------------------------------------------------------------------- /InlineTask.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/InlineTask.proj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/LICENSE -------------------------------------------------------------------------------- /LogFileCopy.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/LogFileCopy.targets -------------------------------------------------------------------------------- /MSBuildBatSignal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/MSBuildBatSignal.png -------------------------------------------------------------------------------- /MSBuildTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/MSBuildTools.sln -------------------------------------------------------------------------------- /MakeRelativeItems.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/MakeRelativeItems.proj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/README.md -------------------------------------------------------------------------------- /Snippets/ConcatFiles.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/ConcatFiles.proj -------------------------------------------------------------------------------- /Snippets/CopyToOutputSubdirectory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/CopyToOutputSubdirectory.csproj -------------------------------------------------------------------------------- /Snippets/FilterItemGroup.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/FilterItemGroup.proj -------------------------------------------------------------------------------- /Snippets/GenerateLargeSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/GenerateLargeSolution.cs -------------------------------------------------------------------------------- /Snippets/InlineTask.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/InlineTask.proj -------------------------------------------------------------------------------- /Snippets/TaskBatchingAndDuplicateItems.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/Snippets/TaskBatchingAndDuplicateItems.proj -------------------------------------------------------------------------------- /copy.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/copy.proj -------------------------------------------------------------------------------- /msvc_toolset_cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/msvc_toolset_cheatsheet.md -------------------------------------------------------------------------------- /repro/8075/Task/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/repro/8075/Task/Class1.cs -------------------------------------------------------------------------------- /repro/8075/Task/Task.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/repro/8075/Task/Task.csproj -------------------------------------------------------------------------------- /repro/8075/Test.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/repro/8075/Test.proj -------------------------------------------------------------------------------- /repro/8075/silly/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/repro/8075/silly/Program.cs -------------------------------------------------------------------------------- /repro/8075/silly/silly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/repro/8075/silly/silly.csproj -------------------------------------------------------------------------------- /src/AtlInclude/atlinclude.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/AtlInclude/atlinclude.nuspec -------------------------------------------------------------------------------- /src/CallProjectReferenceExe/CallProjectReferenceExe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/CallProjectReferenceExe/CallProjectReferenceExe.sln -------------------------------------------------------------------------------- /src/CallProjectReferenceExe/Consumer/Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/CallProjectReferenceExe/Consumer/Consumer.csproj -------------------------------------------------------------------------------- /src/CallProjectReferenceExe/ExeProject/ExeProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/CallProjectReferenceExe/ExeProject/ExeProject.csproj -------------------------------------------------------------------------------- /src/CallProjectReferenceExe/ExeProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/CallProjectReferenceExe/ExeProject/Program.cs -------------------------------------------------------------------------------- /src/CodeTaskFactory/CodeTaskFactorySample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/CodeTaskFactory/CodeTaskFactorySample.proj -------------------------------------------------------------------------------- /src/ErrorLogger/ErrorLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ErrorLogger/ErrorLogger.cs -------------------------------------------------------------------------------- /src/ErrorLogger/ErrorLogger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ErrorLogger/ErrorLogger.csproj -------------------------------------------------------------------------------- /src/Evaluation/Eval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/Evaluation/Eval.cs -------------------------------------------------------------------------------- /src/Evaluation/MultiProjectEval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/Evaluation/MultiProjectEval.cs -------------------------------------------------------------------------------- /src/Evaluation/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/Evaluation/Reflector.cs -------------------------------------------------------------------------------- /src/Evaluation/eval.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/Evaluation/eval.csproj -------------------------------------------------------------------------------- /src/FindDoubleWrites/FindDoubleWrites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/FindDoubleWrites/FindDoubleWrites.cs -------------------------------------------------------------------------------- /src/FindDoubleWrites/FindDoubleWrites.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/FindDoubleWrites/FindDoubleWrites.csproj -------------------------------------------------------------------------------- /src/FindDoubleWrites/LogFileCopy.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/FindDoubleWrites/LogFileCopy.targets -------------------------------------------------------------------------------- /src/GenerateCs/GenerateCs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/GenerateCs/GenerateCs.csproj -------------------------------------------------------------------------------- /src/GenerateCs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/GenerateCs/Program.cs -------------------------------------------------------------------------------- /src/LegacyCsprojRefAssemblies/LegacyCsprojRefAssemblies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/LegacyCsprojRefAssemblies/LegacyCsprojRefAssemblies.csproj -------------------------------------------------------------------------------- /src/LegacyCsprojRefAssemblies/Program.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/LegacyCsprojRefAssemblies/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/LegacyCsprojRefAssemblies/packages.config -------------------------------------------------------------------------------- /src/MSBuildDumper/MSBuildDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/MSBuildDumper/MSBuildDumper.cs -------------------------------------------------------------------------------- /src/MSBuildDumper/MSBuildDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/MSBuildDumper/MSBuildDumper.csproj -------------------------------------------------------------------------------- /src/MSBuildDumper/MSBuildDumper.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/MSBuildDumper/MSBuildDumper.nuspec -------------------------------------------------------------------------------- /src/PackNuspec/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackNuspec/Icon.png -------------------------------------------------------------------------------- /src/PackNuspec/PackNuspec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackNuspec/PackNuspec.csproj -------------------------------------------------------------------------------- /src/PackNuspec/Sample.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackNuspec/Sample.nuspec -------------------------------------------------------------------------------- /src/PackNuspec/readme.md: -------------------------------------------------------------------------------- 1 | Sample readme 2 | -------------------------------------------------------------------------------- /src/PackP2P/A/A.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackP2P/A/A.csproj -------------------------------------------------------------------------------- /src/PackP2P/A/A.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackP2P/A/A.targets -------------------------------------------------------------------------------- /src/PackP2P/B/B.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/PackP2P/B/B.csproj -------------------------------------------------------------------------------- /src/ProjectReferenceGraph/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ProjectReferenceGraph/Program.cs -------------------------------------------------------------------------------- /src/ProjectReferenceGraph/ProjectReferenceGraph.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ProjectReferenceGraph/ProjectReferenceGraph.csproj -------------------------------------------------------------------------------- /src/SampleSourceGenerator/Consumer/Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/Consumer/Consumer.csproj -------------------------------------------------------------------------------- /src/SampleSourceGenerator/Consumer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/Consumer/Program.cs -------------------------------------------------------------------------------- /src/SampleSourceGenerator/Generator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/Generator/Generator.cs -------------------------------------------------------------------------------- /src/SampleSourceGenerator/Generator/Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/Generator/Generator.csproj -------------------------------------------------------------------------------- /src/SampleSourceGenerator/SampleSourceGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/SampleSourceGenerator.sln -------------------------------------------------------------------------------- /src/SampleSourceGenerator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleSourceGenerator/readme.md -------------------------------------------------------------------------------- /src/SampleTask/Sample.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleTask/Sample.proj -------------------------------------------------------------------------------- /src/SampleTask/SampleTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleTask/SampleTask.cs -------------------------------------------------------------------------------- /src/SampleTask/SampleTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SampleTask/SampleTask.csproj -------------------------------------------------------------------------------- /src/SimpleResource/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SimpleResource/Program.cs -------------------------------------------------------------------------------- /src/SimpleResource/SimpleResource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SimpleResource/SimpleResource.csproj -------------------------------------------------------------------------------- /src/SimpleResource/embedded.txt: -------------------------------------------------------------------------------- 1 | This file is embedded -------------------------------------------------------------------------------- /src/SlnFilter/IncludeExcludePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/IncludeExcludePattern.cs -------------------------------------------------------------------------------- /src/SlnFilter/LineScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/LineScanner.cs -------------------------------------------------------------------------------- /src/SlnFilter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/Program.cs -------------------------------------------------------------------------------- /src/SlnFilter/ProjectInSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/ProjectInSolution.cs -------------------------------------------------------------------------------- /src/SlnFilter/SectionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/SectionBlock.cs -------------------------------------------------------------------------------- /src/SlnFilter/SlnFilter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/SlnFilter.csproj -------------------------------------------------------------------------------- /src/SlnFilter/SolutionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/SolutionFile.cs -------------------------------------------------------------------------------- /src/SlnFilter/SolutionFileParserResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/SlnFilter/SolutionFileParserResources.cs -------------------------------------------------------------------------------- /src/TaskInSolution/Consumer/Consumer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Consumer/Consumer.csproj -------------------------------------------------------------------------------- /src/TaskInSolution/Consumer/Input1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Consumer/Input1.txt -------------------------------------------------------------------------------- /src/TaskInSolution/Dependency/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Dependency/Dependency.cs -------------------------------------------------------------------------------- /src/TaskInSolution/Dependency/Dependency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Dependency/Dependency.csproj -------------------------------------------------------------------------------- /src/TaskInSolution/Task/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Task/Task.cs -------------------------------------------------------------------------------- /src/TaskInSolution/Task/Task.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Task/Task.csproj -------------------------------------------------------------------------------- /src/TaskInSolution/Task/Task.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/Task/Task.targets -------------------------------------------------------------------------------- /src/TaskInSolution/TaskInSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/TaskInSolution/TaskInSolution.sln -------------------------------------------------------------------------------- /src/ToolsetLayout/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ToolsetLayout/Program.cs -------------------------------------------------------------------------------- /src/ToolsetLayout/ToolsetLayout.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/ToolsetLayout/ToolsetLayout.csproj -------------------------------------------------------------------------------- /src/rcexe/rcexe.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/src/rcexe/rcexe.nuspec -------------------------------------------------------------------------------- /test/InlineTask.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/test/InlineTask.proj -------------------------------------------------------------------------------- /test/Multiproc.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/test/Multiproc.proj -------------------------------------------------------------------------------- /test/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirillOsenkov/MSBuildTools/HEAD/test/Task.cs --------------------------------------------------------------------------------