Skip to content

Commit 048f1e6

Browse files
committed
More fixes for missing dlls for batch on netcore.
1 parent cb48e8d commit 048f1e6

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

src/ResourceManager/AzureBatch/AzureRM.Batch.Netcore.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Batch.dll',
5858
'.\Microsoft.Azure.Management.Batch.dll',
59-
'.\Microsoft.Extensions.Primitives.dll'
59+
'.\Microsoft.Extensions.Primitives.dll',
60+
'.\System.Runtime.CompilerServices.Unsafe.dll'
6061

6162
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
6263
# ScriptsToProcess = @()

src/ResourceManager/AzureBatch/Commands.Batch.Test/Commands.Batch.Test.Netcore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<ItemGroup>
2525
<PackageReference Include="Azure.Batch" Version="8.1.1" />
2626
<PackageReference Include="Microsoft.Azure.Management.Batch" Version="4.2.0" />
27+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.1.0" />
2728
</ItemGroup>
2829

2930
<ItemGroup>

src/ResourceManager/AzureBatch/Commands.Batch/Commands.Batch.Netcore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<ItemGroup>
3131
<PackageReference Include="Azure.Batch" Version="8.1.1" />
3232
<PackageReference Include="Microsoft.Azure.Management.Batch" Version="4.2.0" />
33+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="1.1.0" />
3334
</ItemGroup>
3435

3536
<ItemGroup>

0 commit comments

Comments
 (0)