Skip to content

Commit

Permalink
Merge pull request #6 from idexus/dev
Browse files Browse the repository at this point in the history
ver 0.5.0
  • Loading branch information
idexus authored Mar 22, 2023
2 parents 466ea4b + 1fb8883 commit 92b2d5f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class Program
{
HotReloader.Init<Program>(HotReloadSupport.IdeIPs);
HotReloader.RequestAdditionalTypes = () => new string[] { "HotReloadExample.MyClass" };
HotReloader.UpdateApplication = types =>
HotReloader.UpdateApplication = dataList =>
{
foreach (var type in types)
Console.WriteLine(type.FullName);
foreach (var data in dataList)
Console.WriteLine($"{data.Type.FullName} isFromChangedFile: {data.IsFromChangedFile}");
};

Console.ReadLine();
Expand All @@ -33,9 +33,7 @@ class Program

Add it to your project

```
dotnet add package HotReloadKit
```
- [https://www.nuget.org/packages/HotReloadKit](https://www.nuget.org/packages/HotReloadKit)

# Disclaimer

Expand Down
2 changes: 1 addition & 1 deletion src/HotReloadKit.VSMac/Properties/AddinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[assembly:Addin (
"HotReloadKit.VSMac",
Namespace = "HotReloadKit.VSMac",
Version = "0.4.0.1-beta"
Version = "0.5.0-beta"
)]

[assembly:AddinName ("HotReloadKit.VSMac")]
Expand Down
2 changes: 1 addition & 1 deletion src/HotReloadKit.VSMac/mpack/addin.info
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Addin id="HotReloadKit.VSMac" version="0.4.0.1-beta" namespace="HotReloadKit.VSMac" name="HotReloadKit.VSMac" author="Pawel Krzywdzinski" description="HotReloadKit.VSMac - Hot Reload for VS2022 for Mac" category="IDE extensions">
<Addin id="HotReloadKit.VSMac" version="0.5.0-beta" namespace="HotReloadKit.VSMac" name="HotReloadKit.VSMac" author="Pawel Krzywdzinski" description="HotReloadKit.VSMac - Hot Reload for VS2022 for Mac" category="IDE extensions">
<Runtime>
<Import assembly="HotReloadKit.VSMac.dll" />
<Import assembly="Microsoft.Build.Framework.dll" />
Expand Down
5 changes: 5 additions & 0 deletions src/HotReloadKit.Windows.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "libs", "libs", "{C3DEC599-3
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlimTcpServer", "..\libs\SlimTcpServer\src\SlimTcpServer\SlimTcpServer.csproj", "{9BAEABE1-E0E5-40A2-BDB4-A2A71906418F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{7193B489-ED3D-45AD-B35D-80CFC95E8CC7}"
ProjectSection(SolutionItems) = preProject
..\README.md = ..\README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down

0 comments on commit 92b2d5f

Please sign in to comment.