mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-30 14:32:50 +08:00
39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Areas\BBS\Data\" />
|
|
<Folder Include="Areas\Doc\Data\" />
|
|
<Folder Include="Areas\Doc\Models\" />
|
|
<Folder Include="Areas\Example\Data\" />
|
|
<Folder Include="Areas\Example\Models\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FreeSql.Site.DAL\FreeSql.Site.DAL.csproj" />
|
|
<ProjectReference Include="..\FreeSql.Site.Entity\FreeSql.Site.Entity.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="Areas\BBS\_ViewStart.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
<Content Update="Areas\Doc\_ViewStart.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
<Content Update="Areas\Example\_ViewStart.cshtml">
|
|
<Pack>$(IncludeRazorContentInPack)</Pack>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JSONSchema="" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|