Bootstrap.csproj 1.1 KB
Newer Older
J
Jared Parsons 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
<Project Sdk="Microsoft.NET.Sdk">
  <!-- 

    This project file is used to create the Microsoft.NetCore.Compilers NuPkg on 
    Unix platforms during our bootstrap phase. This is a very temporary solution. Longer
    term we are moving all of our packaging code to use `dotnet pack` at which point 
    this will simply be folded into that work.

    https://github.com/dotnet/roslyn/issues/25439 -->
  <PropertyGroup>
    <TargetFramework>netcoreapp2.0</TargetFramework>
    <NuspecFile>Microsoft.NETCore.Compilers.nuspec</NuspecFile>
    <DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
J
Jared Parsons 已提交
14
    <NuspecProperties>$(NuspecProperties);version=42.42.42.42-bootstrap</NuspecProperties>
J
Jared Parsons 已提交
15 16 17 18 19 20
    <NuspecProperties>$(NuspecProperties);authors=Microsoft</NuspecProperties>
    <NuspecProperties>$(NuspecProperties);licenseUrl=http://go.microsoft.com/fwlink/?LinkId=529443</NuspecProperties>
    <NuspecProperties>$(NuspecProperties);projectUrl=https://github.com/dotnet/roslyn</NuspecProperties>
    <NuspecProperties>$(NuspecProperties);additionalFilesPath=$(RepoRoot)build/NuGetAdditionalFiles</NuspecProperties>
  </PropertyGroup>
</Project>