forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a props file used to include Azure.Base in the project. (Azure…
…#5342) * Create a props file used to include Azure.Base in the project
- Loading branch information
1 parent
c683160
commit ff8cdb9
Showing
3 changed files
with
17 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/SDKs/Azure.Base/data-plane/Azure.Base/Azure.Base.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- Project references --> | ||
<ItemGroup Condition="'$(UseProjectReferenceToAzureBase)'=='true'"> | ||
<ProjectReference Include="$(MSBuildThisFileDirectory)Azure.Base.csproj" /> | ||
</ItemGroup> | ||
|
||
<!-- Package references --> | ||
<ItemGroup Condition="'$(UseProjectReferenceToAzureBase)'!='true'"> | ||
<PackageReference Include="Azure.Base" Version="1.0.0-preview.3" /> | ||
</ItemGroup> | ||
</Project> |