这是indexloc提供的服务,不要输入任何密码
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions DotNetTry.sln
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Interactiv
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.DotNet.Interactive.Jupyter", "Microsoft.DotNet.Interactive.Jupyter\Microsoft.DotNet.Interactive.Jupyter.csproj", "{113A4166-5734-4F6E-B609-D6CF42679399}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.DotNet.Interactive", "Microsoft.DotNet.Interactive\Microsoft.DotNet.Interactive.csproj", "{C7DCC018-CEFB-4BBC-989E-1C664C344B15}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -175,6 +177,10 @@ Global
{113A4166-5734-4F6E-B609-D6CF42679399}.Debug|Any CPU.Build.0 = Debug|Any CPU
{113A4166-5734-4F6E-B609-D6CF42679399}.Release|Any CPU.ActiveCfg = Release|Any CPU
{113A4166-5734-4F6E-B609-D6CF42679399}.Release|Any CPU.Build.0 = Release|Any CPU
{C7DCC018-CEFB-4BBC-989E-1C664C344B15}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C7DCC018-CEFB-4BBC-989E-1C664C344B15}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C7DCC018-CEFB-4BBC-989E-1C664C344B15}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C7DCC018-CEFB-4BBC-989E-1C664C344B15}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -206,6 +212,7 @@ Global
{B4B9DC70-6BA2-4BC1-A780-7FCEBDB1D218} = {8192FEAD-BCE6-4E62-97E5-2E9EA884BD71}
{91902AAC-F4E9-4648-AC6B-4E4A722D3CC5} = {8192FEAD-BCE6-4E62-97E5-2E9EA884BD71}
{113A4166-5734-4F6E-B609-D6CF42679399} = {6EE8F484-DFA2-4F0F-939F-400CE78DFAC2}
{C7DCC018-CEFB-4BBC-989E-1C664C344B15} = {6EE8F484-DFA2-4F0F-939F-400CE78DFAC2}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D6CD99BA-B16B-4570-8910-225CBDFFA3AD}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<PackageReference Include="System.Reactive" Version="4.1.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.DotNet.Interactive\Microsoft.DotNet.Interactive.csproj" />
<ProjectReference Include="..\WorkspaceServer\WorkspaceServer.csproj" />
</ItemGroup>
</Project>
13 changes: 13 additions & 0 deletions Microsoft.DotNet.Interactive/Microsoft.DotNet.Interactive.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<NoWarn>$(NoWarn);8002</NoWarn>
<!-- Clockwise isn't strongly signed -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.1.5" />
<PackageReference Include="system.commandline.experimental" Version="0.3.0-alpha.19317.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion WorkspaceServer/Kernel/CSharpRepl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private void SetupScriptOptions()
return (true, code);
}

protected internal override async Task HandleAsync(
protected override async Task HandleAsync(
IKernelCommand command,
KernelPipelineContext context)
{
Expand Down
1 change: 1 addition & 0 deletions WorkspaceServer/WorkspaceServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
<ItemGroup>
<ProjectReference Include="..\FSharpWorkspaceShim\FSharpWorkspaceShim.fsproj" />
<ProjectReference Include="..\Microsoft.DotNet.Interactive.Rendering\Microsoft.DotNet.Interactive.Rendering.csproj" />
<ProjectReference Include="..\Microsoft.DotNet.Interactive\Microsoft.DotNet.Interactive.csproj" />
<ProjectReference Include="..\Microsoft.DotNet.Try.Markdown\Microsoft.DotNet.Try.Markdown.csproj" />
<ProjectReference Include="..\Microsoft.DotNet.Try.Project\Microsoft.DotNet.Try.Project.csproj" />
<ProjectReference Include="..\MLS.Agent.Tools\MLS.Agent.Tools.csproj" />
Expand Down