Skip to content

Commit 2430845

Browse files
Update default branch to main
1 parent 93319f1 commit 2430845

26 files changed

+41
-41
lines changed

.github/workflows/dotnet-core-desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: .NET Core Desktop
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
jobs:
1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
ReactJS.NET is a library that makes it easier to use [Babel](http://babeljs.io/) along with Facebook's [React](https://reactjs.org/) and [JSX](https://reactjs.org/docs/jsx-in-depth.html) from C#.
44

5-
[![Build status](https://img.shields.io/appveyor/ci/Daniel15/react-net/master.svg)](https://ci.appveyor.com/project/Daniel15/react-net/branch/master) 
5+
![.NET Core Desktop](https://github.com/reactjs/React.NET/workflows/.NET%20Core%20Desktop/badge.svg)
66
[![NuGet version](http://img.shields.io/nuget/v/React.Core.svg)](https://www.nuget.org/packages/React.Core/)
77
[![Download count](https://img.shields.io/nuget/dt/React.Core.svg)](https://www.nuget.org/packages/React.Core/)
88

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
trigger:
2-
- master
2+
- main
33

44
pool:
55
vmImage: 'windows-2019'

site/jekyll/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<footer class="wrap">
6262
<div class="right">
6363
&copy; 2014-Present Facebook Inc.
64-
<a href="https://github.com/reactjs/React.NET/blob/master/site/jekyll/{{ page.path }}" target="_blank">
64+
<a href="https://github.com/reactjs/React.NET/blob/main/site/jekyll/{{ page.path }}" target="_blank">
6565
Edit this page on GitHub
6666
</a>
6767
</div>

site/jekyll/_posts/2014-04-04-hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ReactJS.NET is packaged in NuGet. Simply run `Install-Package React.Mvc4` in the
3333
package manager console or search NuGet for "React" to install it.
3434
[See the documentation](http://reactjs.net/docs) for more information. The
3535
GitHub project contains
36-
[a sample website](https://github.com/reactjs/React.NET/tree/master/src/React.Sample.Mvc4)
36+
[a sample website](https://github.com/reactjs/React.NET/tree/main/src/React.Sample.Mvc4)
3737
demonstrating all of the features.
3838

3939
Let us know what you think, and feel free to send through any feedback and

site/jekyll/_posts/2015-11-16-2.1.0-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ I'm happy to announce the release of ReactJS.NET 2.1! This is a minor release, a
99
- [#189](https://github.com/reactjs/React.NET/issues/189) - If errors occur while loading a JS file, don't throw an exception until we actually try to **use** the script. This ensures that a syntax error in a file loaded with `AddScriptWithoutTransform` will not crash IIS.
1010
- [#186](https://github.com/reactjs/React.NET/issues/186) - Expose `ReactDOM` just in case it's used in some script.
1111
- [#182](https://github.com/reactjs/React.NET/issues/182) - Use SHA1 rather than MD5 for cache hashing so that it can be used in a [FIPS-compliant environment](https://support.microsoft.com/en-us/kb/811833). *Thanks to [Ruaidhri Primrose](https://github.com/RPrimrose)*
12-
- Added [a console sample](https://github.com/reactjs/React.NET/blob/master/src/React.Sample.ConsoleApp/Program.cs) to show how ReactJS.NET can be used outside of a web context.
12+
- Added [a console sample](https://github.com/reactjs/React.NET/blob/main/src/React.Sample.ConsoleApp/Program.cs) to show how ReactJS.NET can be used outside of a web context.
1313
- [#195](https://github.com/reactjs/React.NET/issues/195) - Add `ReactEnvironment.Current` property as a shortcut to get the current React environment. This replaces the old method of directly using the DI container (`React.AssemblyRegistration.Container.Resolve<IReactEnvironment>()`).
1414

1515
Have fun, and as always, please feel free to send feedback or bug reports

site/jekyll/_posts/2016-10-09-3.0.0-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: post
44
author: Daniel Lo Nigro
55
---
66

7-
I'm happy to announce the release of ReactJS.NET 3.0! The major change in this release is the addition of support for .NET Core! [The tutorial](/tutorials/aspnetcore.html) has also been totally revamped for ASP.NET Core, and a completed version of the tutorial code is now [available in the ReactJS.NET Git repository](https://github.com/reactjs/React.NET/tree/master/src/React.Template/reactnet-vanilla)
7+
I'm happy to announce the release of ReactJS.NET 3.0! The major change in this release is the addition of support for .NET Core! [The tutorial](/tutorials/aspnetcore.html) has also been totally revamped for ASP.NET Core, and a completed version of the tutorial code is now [available in the ReactJS.NET Git repository](https://github.com/reactjs/React.NET/tree/main/src/React.Template/reactnet-vanilla)
88

99
**Major Changes**:
1010

site/jekyll/_posts/2019-01-16-4.0.0-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ It's been under development for a while now, but ReactJS.NET 4.0 is finally rele
99
This release brings a few new features:
1010

1111
- Updated bundled version of React to 16.7 (you can always provide your own version of React if you need a newer version)
12-
- This library is now [MIT licensed](https://github.com/reactjs/React.NET/blob/master/LICENSE)
12+
- This library is now [MIT licensed](https://github.com/reactjs/React.NET/blob/main/LICENSE)
1313
- Javascript engines are no longer automatically registered. See the getting started pages on [.NET Framework](https://reactjs.net/getting-started/aspnet.html) and [.NET Core](https://reactjs.net/getting-started/aspnetcore.html) for more information about how to register a specific Javascript engine in your app.
1414
- JavaScriptEngineSwitcher and JSPool have been updated as a part of this change.
1515
- Further reading for JavaScriptEngineSwitcher: [How to upgrade applications to version 3.X](https://github.com/Taritsyn/JavaScriptEngineSwitcher/wiki/How-to-upgrade-applications-to-version-3.X)

site/jekyll/_posts/2019-03-14-4.1.1-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We're pleased to announce that ReactJS.NET 4.1.1 is now available for download.
88

99
- Updated bundled version of React to 16.8.4, which brings support for hooks
1010
- Updated babel to 6.26.3. We're working on enabling opt-in support for Babel 7 as well, but if you need this today, please use the webpack integration.
11-
- Updated the [ASP.NET](https://github.com/reactjs/React.NET/tree/master/src/React.Web.Mvc4) and [.NET Core](https://github.com/reactjs/React.NET/tree/master/src/React.Template/reactnet-webpack) samples to demonstrate integrating third party libraries, such as Reactstrap.
11+
- Updated the [ASP.NET](https://github.com/reactjs/React.NET/tree/main/src/React.Web.Mvc4) and [.NET Core](https://github.com/reactjs/React.NET/tree/main/src/React.Template/reactnet-webpack) samples to demonstrate integrating third party libraries, such as Reactstrap.
1212

1313
We'd like to hear from you! If there are things you'd like to see added, please send feedback via [Github Issues](https://github.com/reactjs/React.NET/issues). We're a limited team and may not be able to implement what you'd like to see, but still want to hear how this project is being used and where it could be improved.
1414

site/jekyll/_posts/2019-11-24-5.1.2-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: Dustin Masters
66

77
🚀 We're pleased to announce the release of ReactJS.NET 5.1.2. A few small updates in this release:
88

9-
- .NET Core 3.0 support. The [tutorial project](https://github.com/reactjs/React.NET/tree/master/src/React.Template/reactnet-vanilla) has also been updated to demonstrate the (simple!) migration path.
9+
- .NET Core 3.0 support. The [tutorial project](https://github.com/reactjs/React.NET/tree/main/src/React.Template/reactnet-vanilla) has also been updated to demonstrate the (simple!) migration path.
1010
- React and ReactDOM updated to 16.12.0
1111
- Fix missing query parameter mapping for React.Router - thanks [@mattywong](https://github.com/mattywong)
1212

0 commit comments

Comments
 (0)