-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathDntSite.Web.Common.BlazorSsr.csproj
More file actions
34 lines (33 loc) · 1.2 KB
/
DntSite.Web.Common.BlazorSsr.csproj
File metadata and controls
34 lines (33 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Using Include="DNTCommon.Web.Core" />
<Using Include="DNTPersianUtils.Core" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Microsoft.AspNetCore.Http" />
<Using Include="Microsoft.AspNetCore.Authorization" />
<Using Include="DntSite.Web.Common.BlazorSsr.Models" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="DNTCommon.Web.Core" />
<PackageReference Include="Microsoft.TypeScript.MSBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Content Remove="tsconfig.json" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="tsconfig.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</TypeScriptCompile>
</ItemGroup>
</Project>