-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests enabled, added signing support (#3091)
* Tests enabled, added signing support * enabling restore * fixing xml namespaces
- Loading branch information
1 parent
9b0c880
commit 879aa45
Showing
10 changed files
with
288 additions
and
117 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
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,4 +1,3 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="src\dirs.proj" /> | ||
<!-- Import Condition="Exists('\dir.proj')" Project="\dir.proj" / --> | ||
</Project> | ||
<Import Project="src\dirs.proj" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!--<Import Project="SdkCommon\dirs.proj" />--> | ||
<Import Project="Sdks\dirs.proj" /> | ||
<!-- | ||
<Import Project="SdkCommon\dirs.proj" /> | ||
<Import Condition="Exists('Profiles\dir.proj')" Project="Profiles\dirs.proj" /> | ||
<Import Condition="Exists('SdkCommon\dir.proj')" Project="SdkCommon\dirs.proj" /> | ||
<Import Condition="Exists('SDKs\dir.proj')" Project="SDKs\dirs.proj" /> | ||
--> | ||
</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,59 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<!-- | ||
<Import Project="$(MSBuildExtensionsPath)\..\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targets"/> | ||
<Import Condition=" $(OnPremiseBuild) " Project="$(CIToolsPath)\Microsoft.WindowsAzure.Build.OnPremise.msbuild" /> | ||
<Import Project="$(MSBuildExtensionsPath)\..\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targets" /> | ||
<Import Project="$(MSBuildExtensionsPath)\Sdks\NuGet.Build.Tasks.Pack\build\NuGet.Build.Tasks.Pack.targets" /> | ||
--> | ||
<Target Name="PreBuildStaticAnalysis" DependsOnTargets="$(PreBuildStaticAnalysisTargets)"> | ||
<!-- | ||
<MSBuild Targets="GetPackageReferences" | ||
Projects="@(ProjectToBuild)" | ||
ContinueOnError="ErrorAndStop"> | ||
<Output TaskParameter="TargetOutputs" ItemName="OtherProjectReferences" /> | ||
</MSBuild> | ||
<MSBuild Targets="GetOutputPath" | ||
Projects="@(SDKProject)" | ||
ContinueOnError="ErrorAndStop"> | ||
<Output TaskParameter="TargetOutputs" ItemName="OutPutFilesToSign" /> | ||
</MSBuild> | ||
<ItemGroup> | ||
<FilesToSign Include="@(OutPutFilesToSign)"/> | ||
</ItemGroup> | ||
<Message Text="@(OutPutFilesToSign)" /> | ||
<Message Text="@(OtherProjectReferences)" /> | ||
--> | ||
<!--<Error Condition=" '@(OtherProjectReferences)' != '' " Text="Contains Project References, build cannot continue. Please remove all Project references from CI builds" />--> | ||
|
||
|
||
</Target> | ||
|
||
|
||
|
||
<Target Name="GetPackageReferences" Returns="@(ProjectReference)" /> | ||
<Target Name="GetOutputPath" Returns="$(OutputPath)\$(AssemblyName).dll" /> | ||
|
||
|
||
<Target Name="PrintStuff"> | ||
<Message Text="ProgFiles .... $(ProgramFiles)" /> | ||
<Message Text="$(MSBuildExtensionsPath)" /> | ||
<!-- | ||
<Message Text="%(VsIDENugetPackageReference.Identity) and %(VsIDENugetPackageReference.Version) "/> | ||
<Message Text="%(VsIDEProjectReference.Identity) "/> | ||
--> | ||
|
||
</Target> | ||
|
||
<Target Name="GetWellKnownProperties"> | ||
|
||
</Target> | ||
|
||
<!-- | ||
<Target Name="_SplitProjectReferencesByFileExistence"> | ||
</Target> | ||
--> | ||
</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
Oops, something went wrong.