This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
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
Nate McMaster
committed
Feb 9, 2017
1 parent
f57e6fc
commit 6616302
Showing
12 changed files
with
170 additions
and
302 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 +1 @@ | ||
1.0.0-rc4-004757 | ||
1.0.0-rc4-004771 |
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Configuration Condition="'$(Configuration)'==''">Debug</Configuration> | ||
<LifecycleType>Legacy</LifecycleType> | ||
<!-- TFM used only for the purpose of restoring build tools. It does not affect the TFM of projects --> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<SakeVersion>0.2.2</SakeVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NETFrameworkReferenceAssemblies" Version="$(NetFxVersion)" Condition="'$(NetFxVersion)'!=''" /> | ||
<PackageReference Include="NuGetPackageVerifier" Version="1.0.2-*"/> | ||
<PackageReference Include="Sake" Version="$(SakeVersion)" /> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)\targets\common.props" /> | ||
|
||
<ItemGroup> | ||
<Solutions Include="$(RepositoryRoot)\*.sln" /> | ||
</ItemGroup> | ||
|
||
<!-- import Microsoft.Common targets which will import NuGet--> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" /> | ||
|
||
<!-- undo some special Microsoft.Common properties since this isn't a normal project --> | ||
<PropertyGroup> | ||
<_InvalidConfigurationWarn>false</_InvalidConfigurationWarn> | ||
<_InvalidConfigurationError>false</_InvalidConfigurationError> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(RepositoryRoot)build\repo.props" Condition="Exists('$(RepositoryRoot)build\repo.props')" /> | ||
|
||
<Import Project="$(MSBuildThisFileDirectory)\targets\legacy-lifecycle.targets" Condition="'$(LifecycleType)'=='Legacy'" /> | ||
<Import Project="$(MSBuildThisFileDirectory)\targets\standard-lifecycle.targets" Condition="'$(LifecycleType)'=='Standard'" /> | ||
|
||
<Import Project="$(RepositoryRoot)build\repo.targets" Condition="Exists('$(RepositoryRoot)build\repo.targets')" /> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
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,6 +1,7 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<BuildDir>$(RepositoryRoot)\build</BuildDir> | ||
<ArtifactsDir>$(BuildDir)\artifacts</ArtifactsDir> | ||
<RepositoryRoot Condition="'$(RepositoryRoot)'==''">$(MSBuildThisFileDirectory)..\..\</RepositoryRoot> | ||
<ArtifactsDir>$(RepositoryRoot)artifacts\</ArtifactsDir> | ||
<BuildDir>$(ArtifactsDir)build\</BuildDir> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.