-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
25 lines (22 loc) · 805 Bytes
/
Program.cs
File metadata and controls
25 lines (22 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.MSBuild;
using Microsoft.CodeAnalysis.CSharp;
namespace RoslynTester
{
class Program
{
static void Main(string[] args)
{
var solutionPath = @"C:\\Users\\Camilo\\Desktop\\Slicer\\abstract_dynamic_slicer_demo\\example\\src\\example_project.sln";
var workspace = MSBuildWorkspace.Create();
var solution = workspace.OpenSolutionAsync(solutionPath).Result;
var project = solution.Projects.First();
var compilation = project.GetCompilationAsync().Result;
compilation.Emit(@".\\YourExecutable.exe");
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}