Skip to content

Commit 295147d

Browse files
committed
Split middleware into separate NuGet package (React.AspNet.Middleware).
Closes #388
1 parent 5cdd2f4 commit 295147d

15 files changed

+61
-17
lines changed

build.proj

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ of patent rights can be found in the PATENTS file in the same directory.
2323
<ItemGroup>
2424
<PackageAssemblies Include="Cassette.React" />
2525
<PackageAssemblies Include="React.AspNet" />
26+
<PackageAssemblies Include="React.AspNet.Middleware" />
2627
<PackageAssemblies Include="React.Core" />
2728
<PackageAssemblies Include="React.MSBuild" />
2829
<PackageAssemblies Include="React.Owin" />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Description>ASP.NET Core middleware to transpile JavaScript via Babel. Please refer to project site (http://reactjs.net/) for full installation instructions, usage examples and sample code</Description>
5+
<Copyright>Copyright 2014-Present Facebook, Inc</Copyright>
6+
<AssemblyTitle>ReactJS.NET - Babel middleware for ASP.NET Core</AssemblyTitle>
7+
<Authors>Daniel Lo Nigro</Authors>
8+
<TargetFrameworks>net451;netstandard1.6</TargetFrameworks>
9+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
10+
<AssemblyName>React.AspNet.Middleware</AssemblyName>
11+
<AssemblyOriginatorKeyFile>../key.snk</AssemblyOriginatorKeyFile>
12+
<SignAssembly>true</SignAssembly>
13+
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
14+
<PackageId>React.AspNet.Middleware</PackageId>
15+
<PackageTags>asp.net;mvc;asp;javascript;js;react;facebook;reactjs;vnext;asp.net 5;asp.net core</PackageTags>
16+
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
17+
<PackageProjectUrl>http://reactjs.net/</PackageProjectUrl>
18+
<PackageLicenseUrl>https://github.com/reactjs/React.NET#licence</PackageLicenseUrl>
19+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
20+
<DefineConstants>$(DefineConstants);ASPNETCORE</DefineConstants>
21+
<RootNamespace>React.AspNet</RootNamespace>
22+
</PropertyGroup>
23+
24+
<ItemGroup>
25+
<Compile Include="..\SharedAssemblyInfo.cs" />
26+
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
27+
</ItemGroup>
28+
29+
<ItemGroup>
30+
<ProjectReference Include="..\React.Core\React.Core.csproj" />
31+
</ItemGroup>
32+
33+
<ItemGroup>
34+
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.1.2" />
35+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />
36+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.0" />
37+
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="1.1.1" />
38+
</ItemGroup>
39+
40+
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
41+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="1.1.1" />
42+
</ItemGroup>
43+
44+
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
45+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
46+
</PropertyGroup>
47+
48+
</Project>

src/React.AspNet/React.AspNet.csproj

+2-14
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<SignAssembly>true</SignAssembly>
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.AspNet</PackageId>
15-
<PackageTags>asp.net;mvc;asp;javascript;js;react;facebook;reactjs;vnext;asp.net 5</PackageTags>
15+
<PackageTags>asp.net;mvc;asp;javascript;js;react;facebook;reactjs;vnext;asp.net 5;asp.net core</PackageTags>
1616
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
1717
<PackageProjectUrl>http://reactjs.net/</PackageProjectUrl>
1818
<PackageLicenseUrl>https://github.com/reactjs/React.NET#licence</PackageLicenseUrl>
@@ -26,28 +26,16 @@
2626
</ItemGroup>
2727

2828
<ItemGroup>
29+
<ProjectReference Include="..\React.AspNet.Middleware\React.AspNet.Middleware.csproj" />
2930
<ProjectReference Include="..\React.Core\React.Core.csproj" />
3031
</ItemGroup>
3132

3233
<ItemGroup>
33-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="1.1.2" />
34-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
35-
<PackageReference Include="Microsoft.Extensions.FileProviders.Physical" Version="1.1.0" />
3634
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="1.1.2" />
37-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.0" />
38-
</ItemGroup>
39-
40-
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
41-
<Reference Include="System" />
42-
<Reference Include="Microsoft.CSharp" />
4335
</ItemGroup>
4436

4537
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
4638
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
4739
</PropertyGroup>
4840

49-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
50-
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="1.1.1" />
51-
</ItemGroup>
52-
5341
</Project>

src/React.Owin/React.Owin.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<Compile Include="..\SharedAssemblyInfo.cs;..\React.AspNet\BabelFileOptions.cs;..\React.AspNet\BabelFileSystem.cs" />
24+
<Compile Include="..\SharedAssemblyInfo.cs;..\React.AspNet.Middleware\BabelFileOptions.cs;..\React.AspNet.Middleware\BabelFileSystem.cs" />
2525
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
2626
</ItemGroup>
2727

src/React.Sample.Mvc6/React.Sample.Mvc6.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
2929
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
3030
<PackageReference Include="Microsoft.NETCore.Platforms" Version="1.1.0" />
31-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
31+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />
3232
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
3333
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
3434
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.1" />

src/React.sln

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26228.4
4+
VisualStudioVersion = 15.0.26430.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{F567B25C-E869-4C93-9C96-077761250F87}"
77
EndProject
@@ -63,6 +63,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "React.AspNet", "React.AspNe
6363
EndProject
6464
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "React.Sample.Mvc6", "React.Sample.Mvc6\React.Sample.Mvc6.csproj", "{6E2C1144-703C-4FF5-893D-B9C1A2C55C3B}"
6565
EndProject
66+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "React.AspNet.Middleware", "React.AspNet.Middleware\React.AspNet.Middleware.csproj", "{7E1C3999-1982-476D-9307-12B30737B41E}"
67+
EndProject
6668
Global
6769
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6870
Debug|Any CPU = Debug|Any CPU
@@ -129,6 +131,10 @@ Global
129131
{6E2C1144-703C-4FF5-893D-B9C1A2C55C3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
130132
{6E2C1144-703C-4FF5-893D-B9C1A2C55C3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
131133
{6E2C1144-703C-4FF5-893D-B9C1A2C55C3B}.Release|Any CPU.Build.0 = Release|Any CPU
134+
{7E1C3999-1982-476D-9307-12B30737B41E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
135+
{7E1C3999-1982-476D-9307-12B30737B41E}.Debug|Any CPU.Build.0 = Debug|Any CPU
136+
{7E1C3999-1982-476D-9307-12B30737B41E}.Release|Any CPU.ActiveCfg = Release|Any CPU
137+
{7E1C3999-1982-476D-9307-12B30737B41E}.Release|Any CPU.Build.0 = Release|Any CPU
132138
EndGlobalSection
133139
GlobalSection(SolutionProperties) = preSolution
134140
HideSolutionNode = FALSE
@@ -149,5 +155,6 @@ Global
149155
{6AA0D75E-5797-4690-BEFC-098A60C511A3} = {F567B25C-E869-4C93-9C96-077761250F87}
150156
{631FCC55-0219-46DC-838A-C5A3E878943A} = {681C45FB-103C-48BC-B992-20C5B6B78F92}
151157
{6E2C1144-703C-4FF5-893D-B9C1A2C55C3B} = {A51CE5B6-294F-4D39-B32B-BF08DAF9B40B}
158+
{7E1C3999-1982-476D-9307-12B30737B41E} = {681C45FB-103C-48BC-B992-20C5B6B78F92}
152159
EndGlobalSection
153160
EndGlobal

0 commit comments

Comments
 (0)