This repository has been archived by the owner on Nov 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minor updates * Updating sample to use configuration for quotes instead of hard-coding them. * Updated to describe sample * Finishing config * remove placeholder * Adding notes about usings and packages
- Loading branch information
Showing
6 changed files
with
184 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,3 +234,4 @@ _Pvt_Extensions | |
|
||
# FAKE - F# Make | ||
.fake/ | ||
.vscode/ |
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
71 changes: 71 additions & 0 deletions
71
content/asp.net/getting-started/samples/quotes/quotes.csproj
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,71 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" /> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<PreserveCompilationContext>true</PreserveCompilationContext> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wp8+wpa81;</PackageTargetFallback> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="**\*.cs" Exclude="$(GlobalExclude)" /> | ||
<EmbeddedResource Include="**\*.resx" Exclude="$(GlobalExclude)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NETCore.App"> | ||
<Version>1.0.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.NET.Sdk.Web"> | ||
<Version>1.0.0-alpha-20161104-2-112</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc"> | ||
<Version>1.0.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Razor.Tools"> | ||
<Version>1.0.0-preview2-final</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Routing"> | ||
<Version>1.0.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel"> | ||
<Version>1.0.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.StaticFiles"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Logging"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions"> | ||
<Version>1.0.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink.Loader"> | ||
<Version>14.0.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</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,7 @@ | ||
{ | ||
"Quotes": [ | ||
{ "author": "Ralph Johnson", "quote": "Before software can be reusable it first has to be usable." }, | ||
{ "author": "Albert Einstein", "quote": "Make everything as simple as possible, but not simpler." }, | ||
{ "author": "Dwight Eisenhower", "quote": "I have always found that plans are useless, but planning is indispensable." } | ||
] | ||
} |