File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
3
<DevBuild Condition =" '$(DevBuild)'==''" >false</DevBuild >
4
- <WasmtimeVersion Condition =" '$(WasmtimeVersion)'==''" >27 .0.0 </WasmtimeVersion >
4
+ <WasmtimeVersion Condition =" '$(WasmtimeVersion)'==''" >28 .0.1 </WasmtimeVersion >
5
5
<WasmtimeDotnetVersion Condition =" '$(WasmtimeDotnetVersion)'==''" ></WasmtimeDotnetVersion >
6
6
<WasmtimePackageVersion Condition =" '$(DevBuild)'=='true'" >
7
7
$(WasmtimeVersion)$(WasmtimeDotnetVersion)-dev</WasmtimePackageVersion >
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ public Config WithProfilingStrategy(ProfilingStrategy strategy)
298
298
/// <returns>Returns the current config.</returns>
299
299
public Config WithStaticMemoryMaximumSize ( ulong size )
300
300
{
301
- Native . wasmtime_config_static_memory_maximum_size_set ( handle , size ) ;
301
+ Native . wasmtime_config_memory_reservation_set ( handle , size ) ;
302
302
return this ;
303
303
}
304
304
@@ -443,7 +443,7 @@ private static class Native
443
443
public static extern void wasmtime_config_profiler_set ( Handle config , byte strategy ) ;
444
444
445
445
[ DllImport ( Engine . LibraryName ) ]
446
- public static extern void wasmtime_config_static_memory_maximum_size_set ( Handle config , ulong size ) ;
446
+ public static extern void wasmtime_config_memory_reservation_set ( Handle config , ulong size ) ;
447
447
448
448
[ DllImport ( Engine . LibraryName ) ]
449
449
public static extern void wasmtime_config_memory_guard_size_set ( Handle config , ulong size ) ;
You can’t perform that action at this time.
0 commit comments