This commit is contained in:
2025-07-29 11:09:34 +05:00
commit e91bd99572
5 changed files with 1055 additions and 0 deletions

20
NuGetDownloader.csproj Normal file
View File

@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NuGet.Protocol" Version="6.14.0" />
<PackageReference Include="NuGet.Resolver" Version="6.14.0" />
<PackageReference Include="NuGet.Packaging" Version="6.14.0" />
<PackageReference Include="NuGet.Frameworks" Version="6.14.0" />
<PackageReference Include="NuGet.Versioning" Version="6.14.0" />
<PackageReference Include="NuGet.Configuration" Version="6.14.0" />
<PackageReference Include="NuGet.Common" Version="6.14.0" />
</ItemGroup>
</Project>