Skip to content

Commit 3dc993d

Browse files
Fix nuget package (#62)
1 parent 13e340e commit 3dc993d

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/Blazor.Extensions.Logging/Blazor.Extensions.Logging.csproj

+13-1
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,32 @@
99
<TargetFramework>net5.0</TargetFramework>
1010
<IsPackable>true</IsPackable>
1111
<PackageId>Blazor.Extensions.Logging</PackageId>
12+
<TypescriptOutDir>wwwroot</TypescriptOutDir>
1213
</PropertyGroup>
1314

1415
<ItemGroup>
1516
<SupportedPlatform Include="browser" />
1617
</ItemGroup>
1718

1819
<PropertyGroup>
19-
<DefaultItemExcludes>$(DefaultItemExcludes);Client/*;tsconfig.json</DefaultItemExcludes>
20+
<DefaultItemExcludes>$(DefaultItemExcludes);Client/*;</DefaultItemExcludes>
21+
</PropertyGroup>
22+
23+
<PropertyGroup>
24+
<ResolveCurrentProjectStaticWebAssetsInputsDependsOn>
25+
CompileTypeScript;
26+
$(ResolveCurrentProjectStaticWebAssetsInputs)
27+
</ResolveCurrentProjectStaticWebAssetsInputsDependsOn>
2028
</PropertyGroup>
2129

2230
<ItemGroup>
2331
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.3" />
2432
</ItemGroup>
2533

34+
<ItemGroup>
35+
<None Include="tsconfig.json"/>
36+
</ItemGroup>
37+
2638
<ItemGroup>
2739
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.3" />
2840
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />

0 commit comments

Comments
 (0)