Blame view

netcore/src/Modularity/Extend/NCC.Extend/NCC.Extend.csproj 761 Bytes
96009bc9   hexiaodong   hxd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <Project Sdk="Microsoft.NET.Sdk">
  
  	<PropertyGroup>
  		<TargetFramework>net6.0</TargetFramework>
  	</PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  		<DocumentationFile>bin\Debug\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  		<DocumentationFile>bin\Release\$(AssemblyName).xml</DocumentationFile>
  	</PropertyGroup>
  
  	<ItemGroup>
  	  <ProjectReference Include="..\..\Common\NCC.Common.Core\NCC.Common.Core.csproj" />
  	  <ProjectReference Include="..\NCC.Extend.Interfaces\NCC.Extend.Interfaces.csproj" />
  	</ItemGroup>
  
bff07b1f   “wangming”   Refactor FileVari...
20
21
22
23
  	<ItemGroup>
  	  <PackageReference Include="EPPlus" Version="6.2.10" />
  	</ItemGroup>
  
96009bc9   hexiaodong   hxd
24
  </Project>