de2bd2f9
“wangming”
项目初始化
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath />
<DocumentationFile>bin\Release\NCC.Extend.Entitys.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Enum\**" />
<EmbeddedResource Remove="Enum\**" />
<None Remove="Enum\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Infrastructure\NCC.Expand.Thirdparty\NCC.Expand.Thirdparty.csproj" />
<ProjectReference Include="..\..\Common\NCC.Common\NCC.Common.csproj" />
</ItemGroup>
</Project>
|