You've already forked linux-packaging-mono
26 lines
1.1 KiB
XML
Executable File
26 lines
1.1 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<RoslynVersion>2.0.0-beta3</RoslynVersion>
|
|
<RoslynPackageName>Microsoft.Net.Compilers</RoslynPackageName>
|
|
<RoslynTargetsPath>$(ToolRuntimePath)</RoslynTargetsPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<RoslynPropsFile Condition="'$(RoslynPropsFile)' == '' and '$(RunningOnCore)' != 'true'">$(BuildToolsTaskDir)/roslyn/build/Microsoft.Net.Compilers.props</RoslynPropsFile>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
On Unix we always use a version of Roslyn we restore from NuGet and we have to work around some known issues.
|
|
-->
|
|
<PropertyGroup Condition="'$(RoslynPropsFile)' == '' and '$(RunningOnCore)' == 'true'">
|
|
<RoslynPackageDir>$(PackagesDir)/$(RoslynPackageName).$(RoslynVersion)/</RoslynPackageDir>
|
|
<RoslynPropsFile>$(RoslynPackageDir)build/$(RoslynPackageName).props</RoslynPropsFile>
|
|
|
|
<!--
|
|
Portable PDBs are now supported in Linux and OSX with .Net Core MSBuild.
|
|
-->
|
|
<DebugType>Portable</DebugType>
|
|
</PropertyGroup>
|
|
</Project>
|