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:
parent
2717cf8e77
commit
f8b7adb987
|
|
@ -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)'==''"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue