forked from Azure/azure-sdk-tools
-
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.
- Move mgmt tools to mgmtci.proj and not in dotnet.proj - update mgmt package project to use project instead of nuspec So that we can have a unique build each time. For now to build the mgmt tools you need to specific mgmtci.proj from the build queue when starting the build.
- Loading branch information
1 parent
aa0d0d9
commit a4e3d4b
Showing
9 changed files
with
82 additions
and
108 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project Sdk="Microsoft.Build.Traversal"> | ||
<ItemGroup> | ||
<ProjectReference | ||
Include="src\dotnet\**\*.csproj;mgmtci.proj" | ||
Include="src\dotnet\**\*.csproj" | ||
Exclude="src\dotnet\Mgmt.CI.BuildTools\**\*.*" /> | ||
</ItemGroup> | ||
</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 |
---|---|---|
@@ -1,16 +1,5 @@ | ||
<Project DefaultTargets="BuildToolsPackage" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- Default property --> | ||
<PropertyGroup> | ||
<Scope>ci</Scope> | ||
</PropertyGroup> | ||
<Target Name="VsTest" /> | ||
<Import Project="eng/mgmt/ci.buildtools.props" /> | ||
<Import Project="eng/mgmt/ci.buildtools.targets" /> | ||
|
||
<Target Name="Clean" DependsOnTargets="$(CleanProjectDependsOn)" /> | ||
<Target Name="Build" DependsOnTargets="$(BuildProjectDependsOn)" /> | ||
<Target Name="ReBuild" DependsOnTargets="Clean;Build" /> | ||
<Target Name="RestoreProjects" DependsOnTargets="$(RestoreProjectDependsOn)" /> | ||
<Target Name="BuildToolsPackage" DependsOnTargets="$(BuildToolsPackageDependsOn)" /> | ||
<Target Name="Pack" DependsOnTargets="$(BuildToolsPackageDependsOn)" /> | ||
<Project Sdk="Microsoft.Build.Traversal"> | ||
<ItemGroup> | ||
<ProjectReference Include="src\dotnet\Mgmt.CI.BuildTools\**\*.csproj" /> | ||
</ItemGroup> | ||
</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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="..\..\..\Directory.Build.props" /> | ||
<PropertyGroup> | ||
<VersionPrefix>0.10.0</VersionPrefix> | ||
<FullNetFxBitness>AnyCPU</FullNetFxBitness> | ||
<CurrentTargetFxVersion>net461;netstandard2.0</CurrentTargetFxVersion> | ||
<TargetFrameworks>$(CurrentTargetFxVersion)</TargetFrameworks> | ||
<OutputPath>$(CIBuildOutputDir)</OutputPath> | ||
<SignAssembly>false</SignAssembly> | ||
<DelaySign>false</DelaySign> | ||
<PackageFilesPath>$(MSBuildThisFileDirectory)NugetToolsPackage\CI.Tools.Package\build</PackageFilesPath> | ||
</PropertyGroup> | ||
|
||
<!--TestLoaded property is being set in test project file--> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Build" Version="15.9.20" ExcludeAssets="runtime" /> | ||
<PackageReference Include="Microsoft.Build.Framework" Version="15.9.20" ExcludeAssets="runtime" /> | ||
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.9.20" ExcludeAssets="runtime"/> | ||
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.9.20" ExcludeAssets="runtime"/> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Label="PackageMetaData"> | ||
<Company>Microsoft Corporation</Company> | ||
<Product>Azure .NET SDK Build Tools</Product> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<Authors>Microsoft</Authors> | ||
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</PackageIconUrl> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<PackageTags>$(PackageTags);$(NugetCommonTags);$(NugetCommonProfileTags);$(AzureApiVersionInTags)</PackageTags> | ||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.4' ">1.6.1</NetStandardImplicitPackageVersion> | ||
</PropertyGroup> | ||
</Project> |
38 changes: 0 additions & 38 deletions
38
....BuildTools/NugetToolsPackage/CI.Tools.Package/Microsoft.Internal.AzNetSdk.CITools.csproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.