mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
14 lines
559 B
XML
14 lines
559 B
XML
<Project>
|
|
<Target Name="NuGetToNix"
|
|
BeforeTargets="CopyInnerBuildRestoredPackages">
|
|
<ItemGroup>
|
|
<_NuGetToNixPackageCache Include="$(ProjectDirectory)artifacts/sb/package-cache/"/>
|
|
<_NuGetToNixPackageCache Include="$(ProjectDirectory)artifacts/source-build/self/package-cache/"/>
|
|
</ItemGroup>
|
|
<Exec
|
|
Command="nuget-to-nix '@(_NuGetToNixPackageCache)' >'$(ProjectDirectory)deps.nix' 2>'$(ProjectDirectory)deps.out'"
|
|
WorkingDirectory="$(ProjectDirectory)"
|
|
Condition="Exists('%(Identity)')"/>
|
|
</Target>
|
|
</Project>
|