This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This converts to using Internal.AspNetCore.Sdk instead of importing from the KoreBuild folder directly
- Loading branch information
Nate McMaster
committed
Jan 11, 2017
1 parent
07da2c5
commit 1db235c
Showing
2 changed files
with
7 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
<Project> | ||
<Import Project="..\version.props" /> | ||
<Import Project="..\.build\common.props" Condition="Exists('..\.build\common.props')" /> | ||
|
||
<PropertyGroup> | ||
<Product>Microsoft .NET Extensions</Product> | ||
<RepositoryUrl>https://github.com/aspnet/Configuration</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> | ||
<Product>Microsoft .NET Extensions</Product> | ||
</PropertyGroup> | ||
|
||
<Target Name="EnsureInitialized" | ||
BeforeTargets="Build" | ||
Condition="!Exists('$(MSBuildThisFileDirectory)..\.build\common.props')"> | ||
<Error File="$(MSBuildProjectFile)" | ||
Text="Project has not been initialized. Run 'build initialize' in the solution directory '$(MSBuildThisFileDirectory)'" /> | ||
</Target> | ||
<ItemGroup> | ||
<PackageReference Include="Internal.AspNetCore.Sdk" Version="1.0.0-*" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
</Project> |