about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/dotnet/record-downloaded-packages.proj
blob: f85da42ec2be8c7df4aee91fccff6c5c655ec475 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>