Skip to content

Commit 63105a2

Browse files
authored
Add support for @bind:get, @bind:set, @bind:after (#155)
1 parent f91963f commit 63105a2

9 files changed

Lines changed: 25 additions & 7 deletions
190 KB
Binary file not shown.
2.72 MB
Binary file not shown.
94.2 KB
Binary file not shown.
222 KB
Binary file not shown.
46.2 KB
Binary file not shown.

src/Try.Core/Try.Core.csproj

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
<ItemGroup>
44
<PackageReference Include="FluentValidation" Version="11.9.0" />
5-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
6-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.Extensions" Version="6.0.31" />
5+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.10" />
76
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
87
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
98
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
@@ -18,6 +17,25 @@
1817
<ProjectReference Include="..\UserComponents\Try.UserComponents.csproj" />
1918
</ItemGroup>
2019

20+
<!-- https://github.com/dotnet/razor/issues/9494#issuecomment-2438228960 -->
21+
<ItemGroup>
22+
<Reference Include="Microsoft.AspNetCore.Mvc.Razor.Extensions">
23+
<HintPath>..\..\libs\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll</HintPath>
24+
</Reference>
25+
<Reference Include="Microsoft.AspNetCore.Razor.Language">
26+
<HintPath>..\..\libs\Microsoft.AspNetCore.Razor.Language.dll</HintPath>
27+
</Reference>
28+
<Reference Include="Microsoft.AspNetCore.Razor.Utilities.Shared">
29+
<HintPath>..\..\libs\Microsoft.AspNetCore.Razor.Utilities.Shared.dll</HintPath>
30+
</Reference>
31+
<Reference Include="Microsoft.CodeAnalysis.Razor">
32+
<HintPath>..\..\libs\Microsoft.CodeAnalysis.Razor.dll</HintPath>
33+
</Reference>
34+
<Reference Include="Microsoft.Extensions.ObjectPool">
35+
<HintPath>..\..\libs\Microsoft.Extensions.ObjectPool.dll</HintPath>
36+
</Reference>
37+
</ItemGroup>
38+
2139
<ItemGroup>
2240
<SupportedPlatform Include="browser" />
2341
</ItemGroup>

src/TryMudBlazor.Client/TryMudBlazor.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<ItemGroup>
99
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
1010
<PackageReference Include="FluentValidation" Version="11.9.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.6" />
12-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.6" PrivateAssets="all" />
13-
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.6" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.10" />
12+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.10" PrivateAssets="all" />
13+
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="8.0.10" />
1414
<PackageReference Include="MudBlazor" Version="*" />
1515
</ItemGroup>
1616

src/TryMudBlazor.Server/TryMudBlazor.Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Azure.Storage.Blobs" Version="12.20.0" />
1111
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6" NoWarn="NU1605" />
1212
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.6" NoWarn="NU1605" />
13-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.6" />
13+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.10" />
1414
</ItemGroup>
1515

1616
<ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<ItemGroup>
4-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.6" />
4+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.10" />
55
</ItemGroup>
66

77
</Project>

0 commit comments

Comments
 (0)