-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathBlazor.Extensions.Logging.csproj
More file actions
51 lines (42 loc) · 1.88 KB
/
Blazor.Extensions.Logging.csproj
File metadata and controls
51 lines (42 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.Razor" />
<PropertyGroup>
<Title>Blazor Extensions Logging</Title>
<Description>Microsoft Extension Logging implementation for ASP.NET Core Blazor.</Description>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>true</IsPackable>
<PackageId>Blazor.Extensions.Logging</PackageId>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<PropertyGroup>
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
<TypeScriptNoImplicitAny>true</TypeScriptNoImplicitAny>
<TypeScriptRemoveComments>true</TypeScriptRemoveComments>
<TypeScriptSourceMap>false</TypeScriptSourceMap>
<TypeScriptTarget>es6</TypeScriptTarget>
<TypeScriptStrict>true</TypeScriptStrict>
<TypeScriptAlwaysStrict>true</TypeScriptAlwaysStrict>
<TypeScriptPreserveConstEnums>true</TypeScriptPreserveConstEnums>
<TypescriptOutDir>wwwroot</TypescriptOutDir>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="Microsoft.Typescript.MSBuild" Version="4.2.1-rc">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk.Razor" />
<!--
Disable this target from the Microsoft.Typescript.MSBuild package to make
sure JS files are not showing up in projects consuming Logging package in
VS 2019
-->
<Target Name="GetTypeScriptOutputForPublishing" />
</Project>