1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Platforms>AnyCPU;x64;x86</Platforms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <PlatformTarget>x86</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <GenerateDocumentationFile>true</GenerateDocumentationFile>
- <DocumentationFile>bin\Debug\netcoreapp2.1\netcoreapp2.1\DllEapEntity.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="新文件夹1\**" />
- <EmbeddedResource Remove="新文件夹1\**" />
- <None Remove="新文件夹1\**" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="AutoMapper" Version="10.1.1" />
- <PackageReference Include="MongoDB.Bson" Version="2.13.2" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
- <PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Mail\" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DllAmbiguity\DllAmbiguity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Cksoft.Data">
- <HintPath>..\Dll\Cksoft.Data.dll</HintPath>
- </Reference>
- <Reference Include="Cksoft.Unity">
- <HintPath>..\Dll\Cksoft.Unity.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|