-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move hot reload functionality to separate nuget Bolero.HotReload
- Loading branch information
Showing
10 changed files
with
53 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: 0.2.{build} | ||
version: 0.3.{build} | ||
image: | ||
- Visual Studio 2017 | ||
# - Ubuntu | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
FSharp.Core | ||
Microsoft.AspNetCore.Http.Abstractions | ||
Microsoft.Extensions.DependencyInjection.Abstractions | ||
Microsoft.AspNetCore.WebSockets | ||
Microsoft.AspNetCore.Hosting.Abstractions | ||
Microsoft.AspNetCore.SignalR |
17 changes: 17 additions & 0 deletions
17
src/Bolero.Templating.Server/Bolero.Templating.Server.fsproj
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,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\tools\Common.props" /> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<BaseOutputPath>..\..\build</BaseOutputPath> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Templating.fs" /> | ||
<None Include="paket.references" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Bolero.Templating\Bolero.Templating.fsproj" /> | ||
</ItemGroup> | ||
<Import Project="..\..\.paket\Paket.Restore.targets" /> | ||
</Project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FSharp.Core | ||
Microsoft.AspNetCore.SignalR |
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,16 @@ | ||
type file | ||
id Bolero.HotReload | ||
description | ||
HTML template hot reloading for Bolero: a set of tools and libraries to run F# applications in WebAssembly using Blazor | ||
authors | ||
Loic Denuziere | ||
files | ||
../../build/Release/netstandard2.0/Bolero.Templating.dll ==> lib/netstandard2.0 | ||
../../build/Release/netstandard2.0/Bolero.Templating.xml ==> lib/netstandard2.0 | ||
../../build/Release/netstandard2.0/Bolero.Templating.Server.dll ==> lib/netstandard2.0 | ||
../../build/Release/netstandard2.0/Bolero.Templating.Server.xml ==> lib/netstandard2.0 | ||
dependencies | ||
Bolero CURRENTVERSION | ||
HtmlAgilityPack >= LOCKED:Minor | ||
Blazor.Extensions.SignalR >= LOCKED:Minor | ||
Microsoft.AspNetCore.SignalR >= LOCKED:Minor |
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