View HandEditAfter2.xml
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
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk.Web"> | |
... | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" /> | |
... | |
</ItemGroup> | |
</Project> |
View HandEditBefore2.xml
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
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
... | |
<ItemGroup> | |
<Compile Include="**\*.cs" Exclude="$(GlobalExclude)" /> | |
<EmbeddedResource Include="**\*.resx" Exclude="$(GlobalExclude)" /> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App"> | |
<Version>1.0.1</Version> |
View HandEditAfter1.xml
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
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk"> | |
... | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" /> | |
</ItemGroup> | |
</Project> |
View HandEditBefore1.xml
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
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" /> | |
... | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App"> | |
<Version>1.0.1</Version> | |
</PackageReference> | |
<PackageReference Include="Microsoft.NET.Sdk"> | |
<Version>1.0.0-alpha-20161104-2</Version> | |
<PrivateAssets>All</PrivateAssets> |
View WebAppRC2.xml
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
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp1.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<Folder Include="wwwroot\" /> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" /> |
View WebAppRC.xml
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
<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> | |
<ItemGroup> | |
<Compile Include="**\*.cs" Exclude="$(GlobalExclude)" /> | |
<EmbeddedResource Include="**\*.resx" Exclude="$(GlobalExclude)" /> |
View ConsoleAppRC2.xml
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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp1.0</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" /> | |
</ItemGroup> | |
</Project> |
View ConsoleAppRC.xml
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
<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> | |
</PropertyGroup> | |
<ItemGroup> | |
<Compile Include="**\*.cs" /> | |
<EmbeddedResource Include="**\*.resx" /> | |
</ItemGroup> |
View project json.xml
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
{ | |
"version": "1.0.0-*", | |
"buildOptions": { | |
"debugType": "portable", | |
"emitEntryPoint": true | |
}, | |
"dependencies": {}, | |
"frameworks": { | |
"netcoreapp1.0": { | |
"dependencies": { |
View CrossTargetting.xml
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
<PropertyGroup> | |
<TargetFrameworks>netstandard16;net452</TargetFrameworks> | |
</PropertyGroup> |
NewerOlder