mirror of
https://github.com/babalae/bettergi-libraries.git
synced 2026-03-19 10:30:05 +08:00
vc++
This commit is contained in:
31
.gitignore
vendored
Normal file
31
.gitignore
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
.vs/
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Rr]eleases/
|
||||
x64/
|
||||
x86/
|
||||
bld/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
[Ll]og/
|
||||
|
||||
# Mine
|
||||
Tmp/
|
||||
/packages/
|
||||
node_modules/
|
||||
|
||||
*.zip
|
||||
|
||||
# Rider
|
||||
.idea
|
||||
16
BetterGI.Libraries.sln
Normal file
16
BetterGI.Libraries.sln
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BetterGI.VCRuntime", "BetterGI.VCRuntime\BetterGI.VCRuntime.csproj", "{BC1F11FB-F3C3-4B8A-9E4E-5BBF939265B0}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{BC1F11FB-F3C3-4B8A-9E4E-5BBF939265B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BC1F11FB-F3C3-4B8A-9E4E-5BBF939265B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BC1F11FB-F3C3-4B8A-9E4E-5BBF939265B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BC1F11FB-F3C3-4B8A-9E4E-5BBF939265B0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
21
BetterGI.VCRuntime/BetterGI.VCRuntime.csproj
Normal file
21
BetterGI.VCRuntime/BetterGI.VCRuntime.csproj
Normal 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>
|
||||
5
BetterGI.VCRuntime/Class1.cs
Normal file
5
BetterGI.VCRuntime/Class1.cs
Normal file
@@ -0,0 +1,5 @@
|
||||
namespace BetterGI.VCRuntime;
|
||||
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/msvcp140.dll
Normal file
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/msvcp140.dll
Normal file
Binary file not shown.
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/msvcp140_1.dll
Normal file
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/msvcp140_1.dll
Normal file
Binary file not shown.
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/vcruntime140.dll
Normal file
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/vcruntime140.dll
Normal file
Binary file not shown.
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/vcruntime140_1.dll
Normal file
BIN
BetterGI.VCRuntime/runtimes/win-x64/native/vcruntime140_1.dll
Normal file
Binary file not shown.
Reference in New Issue
Block a user