-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
310 additions
and
488 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
MirrorSharp.AspNetCore.Demo/MirrorSharp.AspNetCore.Demo.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,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<PreserveCompilationContext>true</PreserveCompilationContext> | ||
<AssemblyName>MirrorSharp.AspNetCore.Demo</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>MirrorSharp.AspNetCore.Demo</PackageId> | ||
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion> | ||
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="wwwroot\**\*"> | ||
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MirrorSharp.AspNetCore\MirrorSharp.AspNetCore.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.0.3" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.0.2" /> | ||
<PackageReference Include="Microsoft.AspNetCore.WebSockets.Server" Version="0.1.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
25 changes: 0 additions & 25 deletions
25
MirrorSharp.AspNetCore.Demo/MirrorSharp.AspNetCore.Demo.xproj
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<VersionPrefix>0.9.0</VersionPrefix> | ||
<TargetFramework>netstandard1.5</TargetFramework> | ||
<AssemblyName>MirrorSharp.AspNetCore</AssemblyName> | ||
<PackageId>MirrorSharp.AspNetCore</PackageId> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MirrorSharp.Common\MirrorSharp.Common.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="1.0.2" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp1.0</TargetFramework> | ||
<AssemblyName>MirrorSharp.Benchmarks</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>MirrorSharp.Benchmarks</PackageId> | ||
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50;portable-net45+win8+wp8+wpa81;portable-net45+win8</PackageTargetFallback> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\MirrorSharp.Common\MirrorSharp.Common.csproj" /> | ||
<ProjectReference Include="..\MirrorSharp.Testing\MirrorSharp.Testing.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BenchmarkDotNet" Version="0.9.9" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,46 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>MirrorSharp shared server library. MirrorSharp is a code editor <textarea> built on Roslyn — see https://github.com/ashmind/mirrorsharp/blob/master/README.md for details.</Description> | ||
<VersionPrefix>0.9.0</VersionPrefix> | ||
<Authors>Andrey Shchekin</Authors> | ||
<TargetFrameworks>netstandard1.5;net452</TargetFrameworks> | ||
<AssemblyName>MirrorSharp.Common</AssemblyName> | ||
<PackageId>MirrorSharp.Common</PackageId> | ||
<PackageTags>Roslyn;CodeMirror</PackageTags> | ||
<PackageProjectUrl>https://github.com/ashmind/mirrorsharp</PackageProjectUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/ashmind/mirrorsharp.git</RepositoryUrl> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.5' ">$(PackageTargetFallback);dnxcore50;portable-net45+win8+wp8+wpa81;portable-net45+win8</PackageTargetFallback> | ||
<RootNamespace>MirrorSharp</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="JetBrains.Annotations" Version="10.1.5" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="1.3.2" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="1.3.2" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="1.3.2" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="1.3.2" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="1.3.2" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="1.3.2" /> | ||
<PackageReference Include="AshMind.Extensions" Version="2.0.0-pre-20160719" /> | ||
<PackageReference Include="System.Buffers" Version="4.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> | ||
<PackageReference Include="System.Net.WebSockets" Version="4.0.0" /> | ||
<PackageReference Include="System.Threading.Tasks" Version="4.0.11" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' "> | ||
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' "> | ||
<PackageReference Include="System.Threading.Tasks" Version="4.0.11" /> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.