Blame view

antis-ncc-net-core/src/Infrastructure/NCC.Mapster/NCC.Mapster.csproj 720 Bytes
4aba9b59   wwk   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <Project Sdk="Microsoft.NET.Sdk">
  
  	<PropertyGroup>
  		<TargetFramework>net5.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>
  		<FrameworkReference Include="Microsoft.AspNetCore.App" />
  	</ItemGroup>
  
  	<ItemGroup>
  		<PackageReference Include="Mapster" Version="7.2.0" />
  		<PackageReference Include="Mapster.DependencyInjection" Version="1.0.0" />
  	</ItemGroup>
  
  </Project>