Skip to content

Commit 245e6e2

Browse files
committed
Fixed Aks netcore reference for YamlDotNet.Signed (instead of the non-signed version). Renamed Commands.Storage.Netcore.csproj so it won't conflict with the dataplane project name. Fixed the output path trailing slashes for desktop and paths missing character for netcore.
1 parent 100de3d commit 245e6e2

File tree

48 files changed

+81
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+81
-79
lines changed

Azure.PowerShell.Netcore.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Resources.Netcore"
1919
EndProject
2020
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.Storage.Netcore", "src\Common\Commands.Common.Storage\Common.Storage.Netcore.csproj", "{6B91BCDC-5031-4A7A-A566-83308FF997C6}"
2121
EndProject
22-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Storage.Netcore", "src\ResourceManager\Storage\Commands.Management.Storage\Commands.Storage.Netcore.csproj", "{6878D60B-AD5B-4D37-8B84-5D529090FBAC}"
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Management.Storage.Netcore", "src\ResourceManager\Storage\Commands.Management.Storage\Commands.Management.Storage.Netcore.csproj", "{6878D60B-AD5B-4D37-8B84-5D529090FBAC}"
2323
EndProject
2424
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Commands.Websites.Netcore", "src\ResourceManager\Websites\Commands.Websites\Commands.Websites.Netcore.csproj", "{59581DCA-1726-4EE2-A665-0112E681C35C}"
2525
EndProject

src/ResourceManager/Aks/Commands.Aks/Commands.Aks.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PackageReference Include="System.Xml.XmlDocument" Version="4.3.0" />
3333
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
3434
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="1.1.1" />
35-
<PackageReference Include="YamlDotNet" Version="4.2.2" />
35+
<PackageReference Include="YamlDotNet.Signed" Version="4.2.2" />
3636
<PackageReference Include="AutoMapper" Version="6.2.2" />
3737
</ItemGroup>
3838
<ItemGroup>

src/ResourceManager/Aks/Commands.Aks/Commands.Aks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<DebugSymbols>true</DebugSymbols>
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
19-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Aks</OutputPath>
19+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Aks\</OutputPath>
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Commands.AnalysisServices.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.AnalysisService.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.AnalysisService.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Commands.AnalysisServices.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
21-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices</OutputPath>
21+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices\</OutputPath>
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
@@ -29,7 +29,7 @@
2929
<DelaySign>true</DelaySign>
3030
<DebugType>pdbonly</DebugType>
3131
<Optimize>true</Optimize>
32-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices</OutputPath>
32+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.AnalysisServices\</OutputPath>
3333
<DefineConstants>TRACE</DefineConstants>
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>

src/ResourceManager/Cdn/Commands.Cdn/Commands.Cdn.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Cd.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Cdn.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Cd.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Cdn.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/Cdn/Commands.Cdn/Commands.Cdn.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DebugSymbols>true</DebugSymbols>
2222
<DebugType>full</DebugType>
2323
<Optimize>false</Optimize>
24-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Cdn</OutputPath>
24+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Cdn\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>
2626
<ErrorReport>prompt</ErrorReport>
2727
<WarningLevel>4</WarningLevel>
@@ -33,7 +33,7 @@
3333
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
3434
</PropertyGroup>
3535
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
36-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Cdn</OutputPath>
36+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Cdn\</OutputPath>
3737
<DefineConstants>TRACE;SIGN</DefineConstants>
3838
<Optimize>true</Optimize>
3939
<DebugType>pdbonly</DebugType>

src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Commands.Compute.ManagedService.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute.ManagedServic.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute.ManagedService.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Commands.Compute.ManagedService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Prefer32Bit>false</Prefer32Bit>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
32-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute.ManagedService</OutputPath>
32+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute.ManagedService\</OutputPath>
3333
<DefineConstants>TRACE;SIGN</DefineConstants>
3434
<Optimize>true</Optimize>
3535
<DebugType>pdbonly</DebugType>

src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Prefer32Bit>false</Prefer32Bit>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
32-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute</OutputPath>
32+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Compute\</OutputPath>
3333
<DefineConstants>TRACE;SIGN</DefineConstants>
3434
<Optimize>true</Optimize>
3535
<DebugType>pdbonly</DebugType>

src/ResourceManager/ContainerRegistry/Commands.ContainerRegistry/Commands.ContainerRegistry.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistr.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistr.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/ContainerRegistry/Commands.ContainerRegistry/Commands.ContainerRegistry.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DebugSymbols>true</DebugSymbols>
2323
<DebugType>full</DebugType>
2424
<Optimize>false</Optimize>
25-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry</OutputPath>
25+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry\</OutputPath>
2626
<DefineConstants>TRACE;DEBUG;CODE_ANALYSIS</DefineConstants>
2727
<ErrorReport>prompt</ErrorReport>
2828
<WarningLevel>4</WarningLevel>
@@ -31,7 +31,7 @@
3131
<Prefer32Bit>false</Prefer32Bit>
3232
</PropertyGroup>
3333
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
34-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry</OutputPath>
34+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.ContainerRegistry\</OutputPath>
3535
<DefineConstants>TRACE;SIGN</DefineConstants>
3636
<Optimize>true</Optimize>
3737
<DebugType>pdbonly</DebugType>

src/ResourceManager/DataFactories/Commands.DataFactoryV2/Commands.DataFactoryV2.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataFactoryV.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataFactoryV2.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/DataFactories/Commands.DataFactoryV2/Commands.DataFactoryV2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Prefer32Bit>false</Prefer32Bit>
3030
</PropertyGroup>
3131
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
32-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataFactoryV2</OutputPath>
32+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataFactoryV2\</OutputPath>
3333
<DefineConstants>TRACE;SIGN</DefineConstants>
3434
<Optimize>true</Optimize>
3535
<DebugType>pdbonly</DebugType>

src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytic.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytic.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands.DataLakeAnalytics.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<DebugSymbols>true</DebugSymbols>
2020
<DebugType>full</DebugType>
2121
<Optimize>false</Optimize>
22-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics</OutputPath>
22+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics\</OutputPath>
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
@@ -30,7 +30,7 @@
3030
<DelaySign>true</DelaySign>
3131
<DebugType>pdbonly</DebugType>
3232
<Optimize>true</Optimize>
33-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics</OutputPath>
33+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DataLakeAnalytics\</OutputPath>
3434
<DefineConstants>TRACE</DefineConstants>
3535
<ErrorReport>prompt</ErrorReport>
3636
<WarningLevel>4</WarningLevel>

src/ResourceManager/DevTestLabs/Commands.DevTestLabs/Commands.DevTestLabs.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DevTestLab.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DevTestLab.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/DevTestLabs/Commands.DevTestLabs/Commands.DevTestLabs.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<DebugSymbols>true</DebugSymbols>
2020
<DebugType>full</DebugType>
2121
<Optimize>false</Optimize>
22-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs</OutputPath>
22+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs\</OutputPath>
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
@@ -30,7 +30,7 @@
3030
<SignAssembly>true</SignAssembly>
3131
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
3232
<DelaySign>true</DelaySign>
33-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs</OutputPath>
33+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.DevTestLabs\</OutputPath>
3434
<DefineConstants>TRACE;SIGN</DefineConstants>
3535
<Optimize>true</Optimize>
3636
<DebugType>pdbonly</DebugType>

src/ResourceManager/IotHub/Commands.IotHub/Commands.IotHub.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.IotHu.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.IotHub.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHu.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHub.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/IotHub/Commands.IotHub/Commands.IotHub.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<DebugSymbols>true</DebugSymbols>
1717
<DebugType>full</DebugType>
1818
<Optimize>false</Optimize>
19-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.IotHub</OutputPath>
19+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.IotHub\</OutputPath>
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
</PropertyGroup>
2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
25-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHub</OutputPath>
25+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHub\</OutputPath>
2626
<DefineConstants>TRACE;SIGN</DefineConstants>
2727
<Optimize>true</Optimize>
2828
<DebugType>pdbonly</DebugType>

src/ResourceManager/KeyVault/Commands.KeyVault/Commands.KeyVault.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DebugSymbols>true</DebugSymbols>
2222
<DebugType>full</DebugType>
2323
<Optimize>false</Optimize>
24-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.KeyVault</OutputPath>
24+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.KeyVault\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>
2626
<ErrorReport>prompt</ErrorReport>
2727
<WarningLevel>4</WarningLevel>
@@ -32,7 +32,7 @@
3232
<SignAssembly>true</SignAssembly>
3333
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
3434
<DelaySign>true</DelaySign>
35-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.KeyVault</OutputPath>
35+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.KeyVault\</OutputPath>
3636
<DefineConstants>TRACE;SIGN</DefineConstants>
3737
<Optimize>true</Optimize>
3838
<DebugType>pdbonly</DebugType>

src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicAp.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicAp.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicApp.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

src/ResourceManager/LogicApp/Commands.LogicApp/Commands.LogicApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<DebugSymbols>true</DebugSymbols>
1919
<DebugType>full</DebugType>
2020
<Optimize>false</Optimize>
21-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp</OutputPath>
21+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.LogicApp\</OutputPath>
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
@@ -27,7 +27,7 @@
2727
<Prefer32Bit>false</Prefer32Bit>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicApp</OutputPath>
30+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.LogicApp\</OutputPath>
3131
<DefineConstants>TRACE;SIGN</DefineConstants>
3232
<Optimize>true</Optimize>
3333
<DebugType>pdbonly</DebugType>

src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Commands.MarketplaceOrdering.Netcore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.MarketplaceOrderin.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.MarketplaceOrdering.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>

src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Commands.MarketplaceOrdering.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.MarketplaceOrdering</OutputPath>
20+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.MarketplaceOrdering\</OutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>

src/ResourceManager/Media/Commands.Media/Commands.Media.Netcore.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Medi.Netcore\</OutputPath>
16+
<OutputPath>..\..\..\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Media.Netcore\</OutputPath>
1717
<DelaySign>false</DelaySign>
1818
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
22-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Medi.Netcore\</OutputPath>
22+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.Media.Netcore\</OutputPath>
2323
<DocumentationFile />
2424
<SignAssembly>true</SignAssembly>
2525
<DelaySign>true</DelaySign>

0 commit comments

Comments
 (0)