Attempt to fix travis

I think our .nuspec is ending up with paths like:
tools//Microsoft.CodeAnalysis.CSharp.dll

Note the double-slash. This is an attempt to avoid double-slashing.
This commit is contained in:
Ryan Nowak 2018-01-02 10:50:24 -08:00
parent 2717cf8e77
commit f8b7adb987
1 changed files with 4 additions and 1 deletions

View File

@ -110,7 +110,10 @@
</ItemGroup>
<ItemGroup>
<None Include="@(_RazorTool)" PackagePath="tools\" Pack="true"/>
<None Include="@(_RazorTool)">
<PackagePath>tools\%(RecursiveDir)%(Filename)%(Extension)</PackagePath>
<Pack>true</Pack>
</None>
</ItemGroup>
<Error Text="_RazorTool is empty. This is a bug" Condition="'@(_RazorTool)'==''"/>