Skip to content

Vmss #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Mar 8, 2016
Merged

Vmss #167

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1d3afc6
Included LicenseUri and ProjectUri in psd1 files
Feb 26, 2016
b23fb5f
Adding Thread.Yield to TestMockSupport
Mar 1, 2016
12f2d9f
Upgraded to MOQ version 4.2.1510.2205
Mar 1, 2016
ef89e82
Upgraded MOQ to latest available version.
Mar 1, 2016
4b9dad9
Remove the super helpful text "This is the Description section" from …
vivsriaus Mar 3, 2016
88d9b9c
Fixing debug message tracing issue in AutoRest clients
markcowl Mar 4, 2016
6e96432
Update
huangpf Mar 6, 2016
3bd2f85
Update
huangpf Mar 6, 2016
1af62c0
Merge branch 'dev' of github.com:Azure/azure-powershell into dev
Mar 7, 2016
af2546e
Config Cmds
huangpf Mar 7, 2016
b86d7a6
Fix for "Select-AzureSubscription wipes CurrentStorageAccount field" bug
Mar 7, 2016
e386fa9
Merge pull request #1895 from hovsepm/dev
Mar 7, 2016
91de166
Merge pull request #451 from Azure/dev
huangpf Mar 7, 2016
dd39ef1
Merge pull request #1906 from markcowl/release-1.2.2.1
Mar 7, 2016
e03038d
Merge pull request #1902 from vivsriaus/DocUpdate
Mar 7, 2016
60517b4
Merge pull request #1874 from haocs/feature
Mar 7, 2016
d974efa
Merge pull request #454 from Azure/dev
huangpf Mar 7, 2016
6df8084
Fixed indentation and test csproj
Mar 7, 2016
e9ecf59
Merge branch 'dev' of github.com:Azure/azure-powershell into dev
Mar 7, 2016
99326b5
Update
huangpf Mar 8, 2016
ab9f9d4
Skipping SelectAzureSubscriptionTests
Mar 8, 2016
a3bfecb
Fixed StorageAccountIsNotCleaned test
Mar 8, 2016
2ab7917
Merge pull request #1912 from hovsepm/dev
Mar 8, 2016
3f9baa7
Merge pull request #455 from Azure/dev
huangpf Mar 8, 2016
2c421e8
Merge pull request #453 from huangpf/dev
huangpf Mar 8, 2016
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 @@ -84,7 +84,7 @@
<Private>True</Private>
</Reference>
<Reference Include="Moq">
<HintPath>..\..\packages\Moq.4.2.1409.1722\lib\net40\Moq.dll</HintPath>
<HintPath>..\..\packages\Moq.4.2.1510.2205\lib\net40\Moq.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<package id="Microsoft.Rest.ClientRuntime.Azure" version="3.0.2" targetFramework="net45" />
<package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="2.0.1-preview" targetFramework="net45" />
<package id="Microsoft.WindowsAzure.Management.Storage" version="5.1.1" targetFramework="net45" />
<package id="Moq" version="4.2.1409.1722" targetFramework="net45" />
<package id="Moq" version="4.2.1510.2205" targetFramework="net45" />
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
<package id="xunit" version="2.1.0" targetFramework="net45" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
Expand Down
1 change: 0 additions & 1 deletion src/Common/Commands.Common/Commands.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@
<Compile Include="RecordingTracingInterceptor.cs" />
<Compile Include="ClientCreatedArgs.cs" />
<Compile Include="CmdletExtensions.cs" />
<Compile Include="ServiceClientTracingInterceptor.cs" />
<Compile Include="TestMockSupport.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ValidateGuidNotEmpty.cs" />
Expand Down
79 changes: 0 additions & 79 deletions src/Common/Commands.Common/ServiceClientTracingInterceptor.cs

This file was deleted.

8 changes: 8 additions & 0 deletions src/Common/Commands.Common/TestMockSupport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ public static void Delay(int milliSeconds)
{
System.Threading.Thread.Sleep(milliSeconds);
}
else
{
System.Threading.Thread.Yield();
}
}

public static void Delay(TimeSpan duration)
Expand All @@ -37,6 +41,10 @@ public static void Delay(TimeSpan duration)
{
System.Threading.Thread.Sleep(duration);
}
else
{
System.Threading.Thread.Yield();
}
}
}
}
23 changes: 22 additions & 1 deletion src/Common/Storage/Azure.Storage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
23 changes: 22 additions & 1 deletion src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
23 changes: 22 additions & 1 deletion src/ResourceManager/Automation/AzureRM.Automation.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
</Reference>
<Reference Include="Moq, Version=4.2.1402.2112, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
<Reference Include="Moq, Version=4.2.1510.2205, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll</HintPath>
<HintPath>..\..\..\packages\Moq.4.2.1510.2205\lib\net40\Moq.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<package id="Microsoft.Rest.ClientRuntime" version="2.0.1" targetFramework="net45" />
<package id="Microsoft.Rest.ClientRuntime.Azure.Authentication" version="2.0.1-preview" targetFramework="net45" />
<package id="Microsoft.WindowsAzure.Management" version="4.1.1" targetFramework="net45" />
<package id="Moq" version="4.2.1402.2112" targetFramework="net45" />
<package id="Moq" version="4.2.1510.2205" targetFramework="net45" />
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
<package id="xunit" version="2.1.0" targetFramework="net45" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
23 changes: 22 additions & 1 deletion src/ResourceManager/AzureBackup/AzureRM.Backup.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,27 @@ ModuleList = @()
FileList = @()

# Private data to pass to the module specified in ModuleToProcess
PrivateData = ''
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/azure-powershell'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'

} # End of PSData hashtable

} # End of PrivateData hashtable

}
Loading