Skip to content

Commit 6bbc00a

Browse files
Update to .NET Core 3.0 rc1 (#909)
* Update frameworkreference to .NETCore 3.0 rc1 * Bump pipeline config to .NET Core 3.0.100-rc1 * Migrate to new PackageIcon attribute
1 parent b8bc419 commit 6bbc00a

File tree

12 files changed

+26
-15
lines changed

12 files changed

+26
-15
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
- task: DotNetCoreInstaller@0
2020
inputs:
2121
packageType: 'sdk'
22-
version: '3.0.100-preview5-011568'
22+
version: '3.0.100-rc1-014190'
2323

2424
- task: VSBuild@1
2525
inputs:

src/Cassette.React/Cassette.React.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AssemblyName>Cassette.React</AssemblyName>
1111
<PackageId>Cassette.React</PackageId>
1212
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel;cassette</PackageTags>
13-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
13+
<PackageIcon>logo_64.png</PackageIcon>
1414
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1515
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1616
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
@@ -24,6 +24,7 @@
2424
<ItemGroup>
2525
<Compile Include="..\SharedAssemblyInfo.cs" />
2626
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
27+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
2728
</ItemGroup>
2829

2930
<ItemGroup>

src/React.AspNet.Middleware/React.AspNet.Middleware.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.AspNet.Middleware</PackageId>
1515
<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>
16+
<PackageIcon>logo_64.png</PackageIcon>
1717
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1818
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -29,6 +29,7 @@
2929
<ItemGroup>
3030
<Compile Include="..\SharedAssemblyInfo.cs" />
3131
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
32+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3233
</ItemGroup>
3334

3435
<ItemGroup>
@@ -48,7 +49,7 @@
4849
</ItemGroup>
4950

5051
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">
51-
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-preview3-19153-02" />
52+
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-rc1.19457.4" />
5253
</ItemGroup>
5354

5455
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">

src/React.AspNet/React.AspNet.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.AspNet</PackageId>
1515
<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>
16+
<PackageIcon>logo_64.png</PackageIcon>
1717
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1818
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1919
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
@@ -25,6 +25,7 @@
2525
<ItemGroup>
2626
<Compile Include="..\SharedAssemblyInfo.cs" />
2727
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
28+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
2829
</ItemGroup>
2930

3031
<ItemGroup>
@@ -41,7 +42,7 @@
4142
</ItemGroup>
4243

4344
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">
44-
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-preview3-19153-02" />
45+
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-rc1.19457.4" />
4546
</ItemGroup>
4647

4748
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">

src/React.Core/React.Core.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.Core</PackageId>
1515
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel</PackageTags>
16-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
16+
<PackageIcon>logo_64.png</PackageIcon>
1717
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1818
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -31,6 +31,7 @@
3131
<EmbeddedResource Remove="Resources\babel-legacy\node_modules\**" />
3232
<None Remove="node_modules\**" />
3333
<None Remove="Resources\babel-legacy\node_modules\**" />
34+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3435
</ItemGroup>
3536

3637
<ItemGroup>

src/React.MSBuild/React.MSBuild.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.MSBuild</PackageId>
1515
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel;msbuild</PackageTags>
16-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
16+
<PackageIcon>logo_64.png</PackageIcon>
1717
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1818
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -35,6 +35,7 @@
3535
<Pack>true</Pack>
3636
<PackagePath>content\</PackagePath>
3737
</Content>
38+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3839
</ItemGroup>
3940

4041
<ItemGroup>

src/React.Owin/React.Owin.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1515
<PackageId>React.Owin</PackageId>
1616
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel;owin</PackageTags>
17-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
17+
<PackageIcon>logo_64.png</PackageIcon>
1818
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1919
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
2020
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -28,6 +28,7 @@
2828
<ItemGroup>
2929
<Compile Include="..\SharedAssemblyInfo.cs;..\React.AspNet.Middleware\BabelFileOptions.cs;..\React.AspNet.Middleware\BabelFileSystem.cs" />
3030
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
31+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3132
</ItemGroup>
3233

3334
<ItemGroup>

src/React.Router.Mvc4/React.Router.Mvc4.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1515
<PackageId>React.Router.Mvc4</PackageId>
1616
<PackageTags>asp.net;mvc;asp;javascript;js;react;facebook;reactjs;babel;router;react router</PackageTags>
17-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
17+
<PackageIcon>logo_64.png</PackageIcon>
1818
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1919
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
2020
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -33,6 +33,7 @@
3333
<Pack>true</Pack>
3434
<PackagePath>content\</PackagePath>
3535
</Content>
36+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3637
</ItemGroup>
3738

3839
<ItemGroup>

src/React.Router/React.Router.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1414
<PackageId>React.Router</PackageId>
1515
<PackageTags>asp.net;mvc;asp;javascript;js;react;facebook;reactjs;babel;router;react router</PackageTags>
16-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
16+
<PackageIcon>logo_64.png</PackageIcon>
1717
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1818
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
1919
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -27,6 +27,7 @@
2727
<ItemGroup>
2828
<Compile Include="..\SharedAssemblyInfo.cs" />
2929
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
30+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3031
</ItemGroup>
3132

3233
<ItemGroup>
@@ -39,7 +40,7 @@
3940
</ItemGroup>
4041

4142
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.0' ">
42-
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-preview3-19153-02" />
43+
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="3.0.0-rc1.19457.4" />
4344
</ItemGroup>
4445

4546
<ItemGroup>

src/React.Web.Mvc4/React.Web.Mvc4.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1515
<PackageId>React.Web.Mvc4</PackageId>
1616
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel</PackageTags>
17-
<PackageIconUrl>http://reactjs.net/img/logo_64.png</PackageIconUrl>
17+
<PackageIcon>logo_64.png</PackageIcon>
1818
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
1919
<PackageLicense>https://github.com/reactjs/React.NET/blob/master/LICENSE</PackageLicense>
2020
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -32,6 +32,7 @@
3232
<Pack>true</Pack>
3333
<PackagePath>content\</PackagePath>
3434
</Content>
35+
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
3536
</ItemGroup>
3637

3738
<ItemGroup>

0 commit comments

Comments
 (0)