Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.StorageSync</PackageId>
<Description>Provides management capabilities for Azure Storage Sync.</Description>
<Version>2.8.0-preview</Version>
<Version>3.0.0</Version>
<AssemblyName>Microsoft.Azure.Management.StorageSync</AssemblyName>
<PackageTags>Microsoft Azure StorageSync;StorageSync;Azure File Sync;AFS;Microsoft.StorageSync;Storage Sync Service</PackageTags>
<PackageReleaseNotes>
<![CDATA[
This version uses 2.8.0-preview StorageSync API specification which introduced the next version for Azure File Storage Sync.
1. Support for Offline data transfer for Server Endpoints.
2. Reset of Sync server client certificate.
]]>
This version supports the StorageSync API version 2019-02-01. New features include:
1. Support for tracking parallel upload and download for server endpoints
2. Rename the StorageAccountShareName parameter for cloud endpoints to AzureFileShareName
]]>
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Reflection;
using System.Resources;

[assembly: AssemblyTitle("Microsoft Azure File Sync Management Library")]
[assembly: AssemblyDescription("Provides Microsoft Azure File Sync management functions for managing the Microsoft Azure File Sync service.")]

[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")]
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]
154 changes: 0 additions & 154 deletions src/SDKs/StorageSync/StorageSync.Tests/Helpers/Helpers.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static class StorageSyncManagementTestUtilities
public static bool IsTestTenant = false;

// These are used to create default accounts
public static string DefaultLocation = IsTestTenant ? null : "west central us";
public static string DefaultLocation = IsTestTenant ? null : "central us euap";
public static string DefaultRGLocation = IsTestTenant ? null : "eastus2";
public static Dictionary<string, string> DefaultTags = new Dictionary<string, string>
{
Expand Down Expand Up @@ -233,8 +233,8 @@ public static CloudEndpointCreateParameters GetDefaultCloudEndpointParameters()
{
return new CloudEndpointCreateParameters
{
StorageAccountResourceId = "/subscriptions/1d16f9b3-bbe3-48d4-930a-27a74dca003b/resourcegroups/sasdkwestcentralus/providers/Microsoft.Storage/storageAccounts/sasdkwestcentralus",
StorageAccountShareName = "afsfileshare1",
StorageAccountResourceId = "/subscriptions/1d16f9b3-bbe3-48d4-930a-27a74dca003b/resourcegroups/sasdkcentraluseuap/providers/Microsoft.Storage/storageAccounts/sasdkcentraluseuap",
AzureFileShareName = "afsfileshare1",
StorageAccountTenantId = "\"72f988bf-86f1-41af-91ab-2d7cd011db47\""
};
}
Expand All @@ -251,7 +251,7 @@ public static ServerEndpointCreateParameters GetDefaultServerEndpointParameters(
{
return new ServerEndpointCreateParameters
{
ServerLocalPath = "D:\\test2",
ServerLocalPath = "E:\\test2",
CloudTiering = "Off",
VolumeFreeSpacePercent = 0,
ServerResourceId = serverResourceId,
Expand Down
Loading