Skip to content

Commit 9f76a9f

Browse files
committed
Put jemalloc dependency back, update build script
1 parent 6b74119 commit 9f76a9f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

build.cmd

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
set ERROR_CODE=0
44
dotnet restore jemalloc.NET.sln
55
if not %ERRORLEVEL%==0 (
6-
echo Error restoring NuGet packages for DevAudit.sln.
6+
echo Error restoring NuGet packages for jemalloc.NET.sln.
77
set ERROR_CODE=1
88
goto End
99
)
1010
if [%1]==[] (
1111
msbuild jemalloc\msvc\projects\vc2017\jemalloc\jemalloc.vcxproj /p:Configuration=Debug /p:Platform=x64
12-
dotnet build jemalloc.NET.sln /p:Configuration=Benchmark /p:Platform=x64
1312
) else (
14-
dotnet build jemalloc.NET.sln /p:Configuration=Benchmark /p:Platform=x64;%*
13+
msbuild jemalloc.NET.sln /p:Configuration=Benchmark /p:Platform=x64;%*
1514
)
1615
if not %ERRORLEVEL%==0 (
1716
echo Error building jemalloc.NET.sln.

jemalloc.NET.sln

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ EndProject
1111
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "jemalloc", "jemalloc\msvc\projects\vc2017\jemalloc\jemalloc.vcxproj", "{8D6BB292-9E1C-413D-9F98-4864BDC1514A}"
1212
EndProject
1313
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "jemalloc.Api", "jemalloc.Api\jemalloc.Api.csproj", "{9CD27E9F-1F2C-4BEC-8019-743FF8D86589}"
14+
ProjectSection(ProjectDependencies) = postProject
15+
{8D6BB292-9E1C-413D-9F98-4864BDC1514A} = {8D6BB292-9E1C-413D-9F98-4864BDC1514A}
16+
EndProjectSection
1417
EndProject
1518
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "jemalloc.Cli", "jemalloc.Cli\jemalloc.Cli.csproj", "{1FE3EBE7-3922-4CAE-A142-B1C4DF935B0F}"
1619
EndProject
@@ -79,6 +82,7 @@ Global
7982
{C24A6949-BA9E-443B-A67E-188AB489057E}.Release-static|x86.Build.0 = Release|Any CPU
8083
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|Any CPU.ActiveCfg = Release|Win32
8184
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|x64.ActiveCfg = Debug|x64
85+
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|x64.Build.0 = Debug|x64
8286
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|x86.ActiveCfg = Release|Win32
8387
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|x86.Build.0 = Release|Win32
8488
{8D6BB292-9E1C-413D-9F98-4864BDC1514A}.Benchmark|x86.Deploy.0 = Release|Win32

0 commit comments

Comments
 (0)