Skip to content

Commit 0ff28ff

Browse files
committed
Adding FreeDB edition and updating nuget package version.
1 parent 4485b9b commit 0ff28ff

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

src/ResourceManager/Sql/Commands.Sql/Commands.Sql.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,14 @@
262262
<SpecificVersion>False</SpecificVersion>
263263
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
264264
</Reference>
265-
<Reference Include="Microsoft.Azure.Management.Sql, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
266-
<SpecificVersion>False</SpecificVersion>
267-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Sql.0.39.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll</HintPath>
268-
</Reference>
269265
<Reference Include="Microsoft.Azure.KeyVault.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
270266
<HintPath>..\..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll</HintPath>
271267
<Private>True</Private>
272268
</Reference>
269+
<Reference Include="Microsoft.Azure.Management.Sql, Version=0.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
270+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Sql.0.40.0-prerelease\lib\net40\Microsoft.Azure.Management.Sql.dll</HintPath>
271+
<Private>True</Private>
272+
</Reference>
273273
<Reference Include="Microsoft.Azure.Management.Storage">
274274
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Storage.2.4.0-preview\lib\net40\Microsoft.Azure.Management.Storage.dll</HintPath>
275275
</Reference>

src/ResourceManager/Sql/Commands.Sql/Database/Model/DatabaseEdition.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ public enum DatabaseEdition
4242
/// <summary>
4343
/// Azure SQL Data Warehouse database edition
4444
/// </summary>
45-
DataWarehouse = 6
45+
DataWarehouse = 6,
46+
47+
/// <summary>
48+
/// Free database edition. Reserved for special use cases/scenarios.
49+
/// </summary>
50+
Free = 7,
4651
}
4752
}
4853

src/ResourceManager/Sql/Commands.Sql/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
77
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net45" />
88
<package id="Microsoft.Azure.Management.Resources" version="2.18.7-preview" targetFramework="net45" />
9-
<package id="Microsoft.Azure.Management.Sql" version="0.39.0-prerelease" targetFramework="net45" />
9+
<package id="Microsoft.Azure.Management.Sql" version="0.40.0-prerelease" targetFramework="net45" />
1010
<package id="Microsoft.Azure.Management.Storage" version="2.4.0-preview" targetFramework="net45" />
1111
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1212
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />

0 commit comments

Comments
 (0)