-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from StefH/master
Added support for more frameworks
- Loading branch information
Showing
21 changed files
with
16,111 additions
and
66 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
4 changes: 2 additions & 2 deletions
4
CommandLineParser/CommandLineParser_ASPNET5/CommandLineParser/global.json
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,6 @@ | ||
{ | ||
{ | ||
"sources": [ "src", "test" ], | ||
"sdk": { | ||
"version": "1.0.0-beta3" | ||
"version": "1.0.0-rc1-update1" | ||
} | ||
} |
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
31 changes: 31 additions & 0 deletions
31
...CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/CommandLineParser.xproj
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,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>b2abab5c-24ef-4a0f-8f2e-51c3fe868229</ProjectGuid> | ||
<RootNamespace>CommandLineParser</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> | ||
<SccProjectName>SAK</SccProjectName> | ||
<SccProvider>SAK</SccProvider> | ||
<SccAuxPath>SAK</SccAuxPath> | ||
<SccLocalPath>SAK</SccLocalPath> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<AssemblyName>CommandLineParser</AssemblyName> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
60 changes: 60 additions & 0 deletions
60
...neParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/frameworks.txt
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,60 @@ | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Name | Abbr | Description | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| .NET Framework | net | Standard .NET BCL on Windows Desktop and Server. | | ||
| | net11 | | | ||
| | net20 | | | ||
| | net35 | | | ||
| | net40 | | | ||
| | net403 | | | ||
| | net45 | | | ||
| | net451 | | | ||
| | net452 | | | ||
| | net46 | | | ||
| | net461 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| .NET Core | netcore | .NET Core Framework used in Windows Store Development | | ||
| | netcore (equivalent to netcore45) | | | ||
| | netcore45 (equivalent to win8) | | | ||
| | netcore451 (equivalent to win81) | | | ||
| | netcore50 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| .NET MicroFramework | netmf | Support for [.NET MicroFramework](http://netmf.github.io/) projects | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Windows | win | Frameworks to support Windows Store Development | | ||
| | win (equivalent to win8) | | | ||
| | win8 (equivalent to netcore45) | | | ||
| | win81 (equivalent to netcore451) | | | ||
| | win10 -- not supported by Windows 10 Platform | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Silverlight | sl | Support for the Silverlight frameworks | | ||
| | sl4 | | | ||
| | sl5 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Windows Phone | wp | Windows Phone application support | | ||
| | wp (equivalent to wp7) | | | ||
| | wp7 | | | ||
| | wp75 | | | ||
| | wp8 | | | ||
| | wp81 | | | ||
| | wpa81 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| DNX | dnx | ASP.NET server-side framework support (Windows only) | | ||
| | dnx (equivalent to dnx45) | | | ||
| | dnx45 | | | ||
| | dnx451 | | | ||
| | dnx452 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| DNX Core | dnxcore | Core CLR framework support | | ||
| | dnxcore (equivalent to dnxcore50) | | | ||
| | dnxcore50 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Universal Windows Platform | uap | Support for Windows 10 Universal Application Platform | | ||
| | uap (equivalent to uap10) | | | ||
| | uap10 | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ | ||
| Deprecated Frameworks | aspnet50 | | | ||
| aspnetcore50 | | | | ||
| winrt | | | | ||
| | | | | ||
+-----------------------------+-----------------------------------------------+---------------------------------------------------------------------+ |
52 changes: 28 additions & 24 deletions
52
...LineParser/CommandLineParser_ASPNET5/CommandLineParser/src/CommandLineParser/project.json
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.