Skip to content

Commit a92f6f4

Browse files
authored
Create README.md
1 parent 6be7c45 commit a92f6f4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# LiveSharp
2+
Original hot reload solution for .NET platform. This project has mostly been superceded by a built-in hot reload in .NET 6. However, there are still many issues with the native hot reload, that's why I decided to open LiveSharp to the public
3+
4+
# How to build
5+
6+
* Open and build LiveSharp.Build.sln
7+
* Close LiveSharp.Build.sln
8+
* Open and build LiveSharp.sln
9+
10+
# How to run locally
11+
12+
* Go to `src\LiveSharp.Server` and `dotnet run`
13+
* Open your project and paste the following lines
14+
```
15+
<ItemGroup>
16+
<Reference Include="{PATH_TO_LIVESHARP}\livesharp\build\livesharp.dll" />
17+
</ItemGroup>
18+
19+
<Import Project="{PATH_TO_LIVESHARP}\livesharp\build\livesharp.targets" />
20+
```
21+
* Replace `{PATH_TO_LIVESHARP}` with the actual path to the repo
22+
* Run your project
23+
24+
25+
26+
27+

0 commit comments

Comments
 (0)