-
Notifications
You must be signed in to change notification settings - Fork 754
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 #423 from dotnet/IxAsyncCSharp8
System.Interactive.Async with C# 8.0 proposed interfaces
- Loading branch information
Showing
460 changed files
with
94,134 additions
and
32,390 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core Launch (console) - Ix.NET.sln", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build - Ix.NET.sln", | ||
"program": "${workspaceFolder}/Playground/bin/Debug/netcoreapp2.1/Playground.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/Playground", | ||
"console": "internalConsole", | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Core Launch (console) - Ix.Async.NET.sln", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build - Ix.Async.NET.sln", | ||
"program": "${workspaceFolder}/Playground/bin/Debug/netcoreapp2.1/Playground.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/Playground", | ||
"console": "internalConsole", | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command:pickProcess}" | ||
} | ||
,] | ||
} |
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,35 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build - Ix.NET.sln", | ||
"command": "dotnet", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/Ix.NET.sln", | ||
"/property:GenerateFullPaths=true" | ||
], | ||
"type": "shell", | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "silent" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"label": "build - Ix.Async.NET.sln", | ||
"command": "dotnet", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/Ix.NET.sln", | ||
"/property:GenerateFullPaths=true" | ||
], | ||
"type": "shell", | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "silent" | ||
}, | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
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,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\System.Interactive.Async.Providers\System.Interactive.Async.Providers.csproj" /> | ||
<ProjectReference Include="..\System.Interactive.Async\System.Interactive.Async.csproj" /> | ||
<ProjectReference Include="..\System.Interactive.Providers\System.Interactive.Providers.csproj" /> | ||
<ProjectReference Include="..\System.Interactive\System.Interactive.csproj" /> | ||
<ProjectReference Include="..\System.Linq.Async.Queryable\System.Linq.Async.Queryable.csproj" /> | ||
<ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.