-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleSwarm.csproj
More file actions
26 lines (22 loc) · 1.08 KB
/
SimpleSwarm.csproj
File metadata and controls
26 lines (22 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>SimpleSwarm</AssemblyName>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos.Table" Version="1.0.8" />
<PackageReference Include="Microsoft.Azure.Management.Compute.Fluent" Version="1.36.1" />
<PackageReference Include="Microsoft.Azure.Management.Fluent" Version="1.36.1" />
<PackageReference Include="Microsoft.Azure.Management.KeyVault" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="20.2.1" />
<PackageReference Include="Microsoft.Azure.Management.ResourceManager.Fluent" Version="1.36.1" />
<PackageReference Include="Microsoft.Azure.Management.Storage" Version="17.2.0" />
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Tests\" />
</ItemGroup>
</Project>