-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathCoreWiki.csproj
More file actions
64 lines (58 loc) · 3.24 KB
/
CoreWiki.csproj
File metadata and controls
64 lines (58 loc) · 3.24 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UserSecretsId>7b1e67c2-befb-4e2e-957d-603f8b2e5491</UserSecretsId>
<UseRazorBuildServer>false</UseRazorBuildServer>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="7.0.1" />
<PackageReference Include="BuildBundlerMinifier" Version="2.8.391" />
<PackageReference Include="DiffPlex" Version="1.4.2" />
<PackageReference Include="HtmlSanitizer" Version="4.0.187" />
<PackageReference Include="Humanizer" Version="2.5.1" />
<PackageReference Include="MediatR" Version="5.1.0" />
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.5.1" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build" Version="1.0.163" />
<PackageReference Include="NodaTime" Version="2.4.1" />
<PackageReference Include="NWebsec.AspNetCore.Middleware" Version="2.0.0" />
<PackageReference Include="NWebsec.AspNetCore.Mvc.TagHelpers" Version="2.0.0" />
<PackageReference Include="Snickler.RSSCore" Version="1.0.3" />
<PackageReference Include="WebEssentials.AspNetCore.PWA" Version="1.0.49" />
<PackageReference Include="Westwind.AspNetCore.Markdown" Version="3.0.36" />
</ItemGroup>
<ItemGroup>
<Folder Include="Areas\Identity\Services\" />
<Folder Include="App_Data\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreWiki.Application\CoreWiki.Application.csproj" />
<ProjectReference Include="..\CoreWiki.FirstStart\CoreWiki.FirstStart.csproj" />
<ProjectReference Include="..\CoreWiki.Notifications\CoreWiki.Notifications.csproj" />
<ProjectReference Include="..\CoreWiki.Data\CoreWiki.Data.EntityFramework.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="Areas\Identity\Pages\Account\Manage\MyRoles.cshtml">
<Pack>$(IncludeRazorContentInPack)</Pack>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="App_Data\README.md">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="DebugEnsureNodeEnv" BeforeTargets="BundleMinify;Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('.\node_modules') ">
<!-- Ensure Node.js is installed -->
<Exec Command="node --version" ContinueOnError="true">
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
</Exec>
<Error Condition="'$(ErrorCode)' != '0'" Text="Node.js is required to build and run this project. To continue, please install Node.js from https://nodejs.org/, and then restart your command prompt or IDE." />
<Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
<Exec WorkingDirectory=".\" Command="npm install --no-save" />
</Target>
</Project>