Merge pull request #1133 from nguerrera/remove-azure-dependency-from-source-build
Remove dependency on WindowsAzure.Storage in source build
This commit is contained in:
commit
219089e762
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">$(CoreSdkTargetFramework)</TargetFrameworks>
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">$(CoreSdkTargetFramework)</TargetFrameworks>
|
||||||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
<RootNamespace>Microsoft.DotNet.Cli.Build</RootNamespace>
|
<RootNamespace>Microsoft.DotNet.Cli.Build</RootNamespace>
|
||||||
|
<DefineConstants Condition="'$(DotNetBuildFromSource)' == 'true'">$(DefineConstants);SOURCE_BUILD</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -13,7 +14,7 @@
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
||||||
<PackageReference Include="NuGet.Versioning" Version="4.3.0" />
|
<PackageReference Include="NuGet.Versioning" Version="4.3.0" />
|
||||||
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
|
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
|
||||||
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" />
|
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
|
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
|
||||||
|
|
Loading…
Reference in a new issue