Skip to content

Commit

Permalink
Move ContainerInstance to main (#16168)
Browse files Browse the repository at this point in the history
* Move ContainerInstance to main

* suppress signature issue

* Bump Version for Az.ContainerInstance manually

Co-authored-by: azure-powershell-bot <[email protected]>
  • Loading branch information
BethanyZhou and azure-powershell-bot authored Oct 25, 2021
1 parent 02079c0 commit 6990cb7
Show file tree
Hide file tree
Showing 403 changed files with 16,275 additions and 5,667 deletions.
296 changes: 148 additions & 148 deletions src/ContainerInstance/Az.ContainerInstance.format.ps1xml

Large diffs are not rendered by default.

23 changes: 15 additions & 8 deletions src/ContainerInstance/Az.ContainerInstance.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 6/11/2021
# Generated on: 10/22/2021
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = './Az.ContainerInstance.psm1'

# Version number of this module.
ModuleVersion = '2.1.0'
ModuleVersion = '2.1.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -71,13 +71,15 @@ FormatsToProcess = './Az.ContainerInstance.format.ps1xml'
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = 'Add-AzContainerInstanceOutput', 'Get-AzContainerGroup',
'Get-AzContainerInstanceCachedImage',
'Get-AzContainerInstanceCapability', 'Get-AzContainerInstanceLog',
'Get-AzContainerInstanceUsage', 'Invoke-AzContainerInstanceCommand',
'New-AzContainerGroup',
'Get-AzContainerInstanceCapability',
'Get-AzContainerInstanceContainerGroupOutboundNetworkDependencyEndpoint',
'Get-AzContainerInstanceLog', 'Get-AzContainerInstanceUsage',
'Invoke-AzContainerInstanceCommand', 'New-AzContainerGroup',
'New-AzContainerGroupImageRegistryCredentialObject',
'New-AzContainerGroupPortObject',
'New-AzContainerGroupVolumeObject',
'New-AzContainerInstanceEnvironmentVariableObject',
'New-AzContainerInstanceHttpHeaderObject',
'New-AzContainerInstanceInitDefinitionObject',
'New-AzContainerInstanceObject',
'New-AzContainerInstancePortObject',
Expand All @@ -92,7 +94,7 @@ CmdletsToExport = @()
# VariablesToExport = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
AliasesToExport = 'Get-AzContainerGroupOutboundNetworkDependencyEndpoint'

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand Down Expand Up @@ -121,10 +123,15 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Removed the display of file share credential [#15224]'
ReleaseNotes = '* Upgrade API version to 2021-09-01
- [Breaking Change] The type of parameter ''LogAnalyticWorkspaceResourceId'' in ''New-AzContainerGroup'' changes from Hashtable to String
- [Breaking Change] Parameter ''NetworkProfileId'' in ''New-AzContainerGroup'' is removed, ''Subnet'' and ''Zone'' are added
- [Breaking Change] Parameter ''ReadinessProbeHttpGetHttpHeadersName'' and ''ReadinessProbeHttpGetHttpHeadersValue'' in ''New-AzContainerInstanceObject'' are removed and ''ReadinessProbeHttpGetHttpHeader'' is added as its alternatives
- [Breaking Change] Parameter ''LivenessProbeHttpGetHttpHeadersName'' and ''LivenessProbeHttpGetHttpHeadersValue'' in ''New-AzContainerInstanceObject'' are removed and ''LivenessProbeHttpGetHttpHeader'' is added as its alternatives
- Added ''Get-AzContainerInstanceContainerGroupOutboundNetworkDependencyEndpoint'''

# Prerelease string of this module
# Prerelease = ''
Prerelease = 'preview'

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
Expand Down
26 changes: 14 additions & 12 deletions src/ContainerInstance/Az.ContainerInstance.psm1
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# region Generated
# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
# is regenerated.
# ----------------------------------------------------------------------------------
# Load required Az.Accounts module
$accountsName = 'Az.Accounts'
Expand All @@ -32,7 +33,7 @@
}

if(-not $accountsModule) {
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.2.3') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
}
Expand All @@ -50,6 +51,7 @@
# Tweaks the pipeline on module load
$instance.OnModuleLoad = $VTable.OnModuleLoad


# Tweaks the pipeline per call
$instance.OnNewRequest = $VTable.OnNewRequest

Expand Down
8 changes: 8 additions & 0 deletions src/ContainerInstance/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@

## Upcoming Release

## Version 2.1.1-preview
* Upgrade API version to 2021-09-01
- [Breaking Change] The type of parameter `LogAnalyticWorkspaceResourceId` in `New-AzContainerGroup` changes from Hashtable to String
- [Breaking Change] Parameter `NetworkProfileId` in `New-AzContainerGroup` is removed, `Subnet` and `Zone` are added
- [Breaking Change] Parameter `ReadinessProbeHttpGetHttpHeadersName` and `ReadinessProbeHttpGetHttpHeadersValue` in `New-AzContainerInstanceObject` are removed and `ReadinessProbeHttpGetHttpHeader` is added as its alternatives
- [Breaking Change] Parameter `LivenessProbeHttpGetHttpHeadersName` and `LivenessProbeHttpGetHttpHeadersValue` in `New-AzContainerInstanceObject` are removed and `LivenessProbeHttpGetHttpHeader` is added as its alternatives
- Added `Get-AzContainerInstanceContainerGroupOutboundNetworkDependencyEndpoint`

## Version 2.1.0
* Removed the display of file share credential [#15224]

Expand Down
116 changes: 86 additions & 30 deletions src/ContainerInstance/ContainerInstance.sln
Original file line number Diff line number Diff line change
@@ -1,48 +1,104 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29709.97
VisualStudioVersion = 16.6.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{6941C02D-87D7-4085-A159-B17B919D3789}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{62843FE6-7575-4D88-B989-7DF7EEC0BC01}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{592ED108-861D-4393-8064-3A4A5CBDAD3D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{442C609B-A431-4A71-B289-08F0B63C83E5}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{6D571554-1F7C-48A4-9C6F-0622412505AC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{1BF8E2F8-32B0-4887-BE27-D5106A331462}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.ContainerInstance", "Az.ContainerInstance.csproj", "{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{55D1E221-D209-4AAE-AD5B-C7D0B028894D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ContainerInstance", "Az.ContainerInstance.csproj", "{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.Build.0 = Debug|Any CPU
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.ActiveCfg = Release|Any CPU
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.Build.0 = Release|Any CPU
{442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.Build.0 = Release|Any CPU
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.Build.0 = Release|Any CPU
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.Build.0 = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030}
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|x64.ActiveCfg = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|x64.Build.0 = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|x86.ActiveCfg = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Debug|x86.Build.0 = Debug|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|Any CPU.Build.0 = Release|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|x64.ActiveCfg = Release|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|x64.Build.0 = Release|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|x86.ActiveCfg = Release|Any CPU
{6941C02D-87D7-4085-A159-B17B919D3789}.Release|x86.Build.0 = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|x64.ActiveCfg = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|x64.Build.0 = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|x86.ActiveCfg = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Debug|x86.Build.0 = Debug|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|Any CPU.Build.0 = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|x64.ActiveCfg = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|x64.Build.0 = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|x86.ActiveCfg = Release|Any CPU
{592ED108-861D-4393-8064-3A4A5CBDAD3D}.Release|x86.Build.0 = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|x64.ActiveCfg = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|x64.Build.0 = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|x86.ActiveCfg = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Debug|x86.Build.0 = Debug|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|Any CPU.Build.0 = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|x64.ActiveCfg = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|x64.Build.0 = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|x86.ActiveCfg = Release|Any CPU
{6D571554-1F7C-48A4-9C6F-0622412505AC}.Release|x86.Build.0 = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|x64.ActiveCfg = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|x64.Build.0 = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|x86.ActiveCfg = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Debug|x86.Build.0 = Debug|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|Any CPU.Build.0 = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|x64.ActiveCfg = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|x64.Build.0 = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|x86.ActiveCfg = Release|Any CPU
{1BF8E2F8-32B0-4887-BE27-D5106A331462}.Release|x86.Build.0 = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|x64.ActiveCfg = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|x64.Build.0 = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|x86.ActiveCfg = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Debug|x86.Build.0 = Debug|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|Any CPU.Build.0 = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|x64.ActiveCfg = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|x64.Build.0 = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|x86.ActiveCfg = Release|Any CPU
{55D1E221-D209-4AAE-AD5B-C7D0B028894D}.Release|x86.Build.0 = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|x64.ActiveCfg = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|x64.Build.0 = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|x86.ActiveCfg = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Debug|x86.Build.0 = Debug|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|Any CPU.Build.0 = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|x64.ActiveCfg = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|x64.Build.0 = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|x86.ActiveCfg = Release|Any CPU
{3D659EC1-DDCC-458C-9F5F-3BFF8B637EAE}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
4 changes: 2 additions & 2 deletions src/ContainerInstance/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("b6ea5cfe-1c66-471e-87ca-50a5280267d7")]
[assembly: AssemblyVersion("2.1.0")]
[assembly: AssemblyFileVersion("2.1.0")]
[assembly: AssemblyVersion("2.1.1")]
[assembly: AssemblyFileVersion("2.1.1")]
Loading

0 comments on commit 6990cb7

Please sign in to comment.