-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSSCMS.Form.csproj
More file actions
26 lines (21 loc) · 875 Bytes
/
SSCMS.Form.csproj
File metadata and controls
26 lines (21 loc) · 875 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Controllers\FormController.DeleteFile.cs" />
<Compile Remove="Controllers\FormController.UploadFile.cs" />
<Compile Remove="Plugin.cs" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<Content Update="wwwroot\**\*" CopyToOutputDirectory="PreserveNewest" />
<Content Include="README.md" CopyToPublishDirectory="PreserveNewest" />
<Content Include="CHANGELOG.md" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SSCMS" Version="7.2.0" />
<!-- <ProjectReference Include="..\..\..\SSCMS\SSCMS.csproj" /> -->
</ItemGroup>
</Project>