This commit is contained in:
辉鸭蛋
2025-06-24 23:23:51 +08:00
parent 2a1c739ef3
commit a36b9bed52
8 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableDynamicLoading>true</EnableDynamicLoading>
<Version>14.44.35208.0</Version>
<Authors>huiyadanli</Authors>
<Description>Visual C++ 2015/2017/2019/2022 Redistributable packed into a NuGet package. Contains vcruntime140*.dll and msvcp140*.dll.(14.44.35208.0|x64) </Description>
<PackageProjectUrl>https://github.com/babalae/bettergi-libraries</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Include="runtimes\win-x64\native\*.dll" Pack="true" PackagePath="runtimes/win-x64/native" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<Folder Include="runtimes\win-x64\native\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,5 @@
namespace BetterGI.VCRuntime;
public class Class1
{
}