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.
- Loading branch information
Abhijeet Shah
committed
Apr 14, 2017
1 parent
614ebfc
commit 72fa8c5
Showing
486 changed files
with
12,498 additions
and
12,162 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ binaries/ | |
[Dd]ebug*/ | ||
[Rr]elease/ | ||
build/ | ||
restoredPackages/ | ||
src/NuGet.Config | ||
tools/7-zip/ | ||
|
||
|
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,4 @@ | ||
<Project ToolsVersion="15.0"> | ||
<Import Project="tools\buildTargets\common.Build.props"/> | ||
<Import Project="tools\buildTargets\common.NugetPackage.props" /> | ||
</Project> |
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,65 @@ | ||
<Project> | ||
<Import Project="dirs.proj" /> | ||
|
||
<PropertyGroup> | ||
<LibraryRoot>$(MSBuildThisFileDirectory)</LibraryRoot> | ||
<LibrarySourceFolder>$(LibraryRoot)src</LibrarySourceFolder> | ||
<LibraryToolsFolder>$(LibraryRoot)tools</LibraryToolsFolder> | ||
<LibraryNugetPackageFolder>$(LibraryRoot)\restoredPackages</LibraryNugetPackageFolder> | ||
<LibraryFriendlyName>Microsoft Azure Management Libraries</LibraryFriendlyName> | ||
<AuthenticationSolution>src\Authentication\Authentication.sln</AuthenticationSolution> | ||
<ManagementLibrariesSolution>AzureManagementLibraries.sln</ManagementLibrariesSolution> | ||
<BinariesFolder>$(LibraryRoot)binaries</BinariesFolder> | ||
<BuiltPackageOutputDir>$(BinariesFolder)\packages</BuiltPackageOutputDir> | ||
<CodeSign Condition=" '$(CodeSign)' == '' ">false</CodeSign> | ||
<Scope Condition=" '$(Scope)' == '' ">All</Scope> | ||
<NuGetCommand>"$(LibraryToolsFolder)\nuget.exe"</NuGetCommand> | ||
<ImportDirectoryBuildTargets>true</ImportDirectoryBuildTargets> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(PublishTestProjects)' == 'false' Or '$(PublishTestProjects)' == ''"> | ||
<LibrariesToBuild Include="$(LibrarySourceFolder)\$(Scope)\*.sln" Condition=" '$(Scope)' != 'all' " /> | ||
<LibrariesToBuild Include="$(LibrarySourceFolder)\**\*.sln" Exclude="$(LibrarySourceFolder)\KeyVault\Microsoft.Azure.KeyVault.Samples\Microsoft.Azure.KeyVault.Samples.sln" Condition=" '$(Scope)' == 'all' " /> | ||
<LibraryFxTargetList Include="$(FxTargetList)" /> | ||
<AutoRestLibraryFxTargetList Include="portable;net45" /> | ||
<ClientRuntimeProjects Include="$(LibrarySourceFolder)\ClientRuntime\**\*.xproj"/> | ||
<ClientRuntimeTests Include="$(LibrarySourceFolder)\ClientRuntime\*.Tests\*.xproj"/> | ||
<ClientRuntimeRootDir Include="%(ClientRuntimeProjects.RootDir)"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="Well Known Properties"> | ||
<ClientRuntimeRootDir>$(LibraryRoot)src\UpgradeVS17\SdkCommon\ClientRuntime</ClientRuntimeRootDir> | ||
<SdkCommonRootDir>$(LibraryRoot)src\UpgradeVS17\SdkCommon\ClientRuntime</SdkCommonRootDir> | ||
</PropertyGroup> | ||
|
||
|
||
<!-- | ||
<Import Project="tools\buildTargets\common.Build.props"/> | ||
<Import Project="tools\buildTargets\common.NugetPackage.props" /> | ||
<Import Project="tools\buildTargets\common.targets" /> | ||
<Import Project="tools\buildTargets\testTargets\test.Build.props" Condition=" '$(TestProjectType)' == 'true' "/> | ||
--> | ||
|
||
|
||
|
||
|
||
<Target Name="PublishLocal"> | ||
<Exec Command="$(NuGetCommand) push "$(PackageOutputDir)\%(SdkNuGetPackage.Identity).%(SdkNuGetPackage.PackageVersion).nupkg" $(NuGetKey)$(ActualSource)" | ||
IgnoreExitCode="true" | ||
Condition=" '%(SdkNuGetPackage.Publish)' != 'false' " /> | ||
|
||
</Target> | ||
|
||
</Project> | ||
|
||
<!-- | ||
<Import Project="$([MSBuild]::GetPathOfFileAbove('reference.props'))" /> | ||
<Set this true only if you want to test the code sign workflow locally> | ||
<DelaySign Condition =" '$(DelaySign)' == '' ">false</DelaySign> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<FxTargetList>portable;net40;net45</FxTargetList> | ||
<FxTargetList Condition=" '$(Scope)' == 'authentication' ">net45</FxTargetList> | ||
<ZipExeFolder>$(LibraryToolsFolder)\7-Zip</ZipExeFolder> | ||
<ZipExe>$(ZipExeFolder)\7z.exe</ZipExe> | ||
<NuGetCommand>"$(LibraryToolsFolder)\nuget.exe"</NuGetCommand> | ||
--> |
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,31 @@ | ||
<Project> | ||
<Import Project="tools\buildTargets\common.targets" /> | ||
|
||
<!-- <Target Name="BuildSdk" DependsOnTargets="$(BuildTraversedProjectsDependsOn)" /> --> | ||
|
||
<!-- | ||
<Target Name="Clean" DependsOnTargets="$(CleanTraversedProjectsDependsOn)" /> | ||
<Target Name="Build" DependsOnTargets="$(BuildTraversedProjectsDependsOn)" /> | ||
<Target Name="PublishLocal"> | ||
<Exec Command="$(NuGetCommand) push "$(PackageOutputDir)\%(SdkNuGetPackage.Identity).%(SdkNuGetPackage.PackageVersion).nupkg" $(NuGetKey)$(ActualSource)" | ||
IgnoreExitCode="true" | ||
Condition=" '%(SdkNuGetPackage.Publish)' != 'false' " /> | ||
</Target> | ||
--> | ||
</Project> | ||
|
||
<!-- | ||
<Import Project="$([MSBuild]::GetPathOfFileAbove('reference.props'))" /> | ||
<Set this true only if you want to test the code sign workflow locally> | ||
<DelaySign Condition =" '$(DelaySign)' == '' ">false</DelaySign> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<FxTargetList>portable;net40;net45</FxTargetList> | ||
<FxTargetList Condition=" '$(Scope)' == 'authentication' ">net45</FxTargetList> | ||
<ZipExeFolder>$(LibraryToolsFolder)\7-Zip</ZipExeFolder> | ||
<ZipExe>$(ZipExeFolder)\7z.exe</ZipExe> | ||
<NuGetCommand>"$(LibraryToolsFolder)\nuget.exe"</NuGetCommand> | ||
--> |
Oops, something went wrong.