mirror of https://github.com/abpframework/abp
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							40 lines
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
	
	
							40 lines
						
					
					
						
							1.8 KiB
						
					
					
				| <Project Sdk="Microsoft.NET.Sdk">
 | |
| 
 | |
|   <Import Project="..\..\common.props" />
 | |
| 
 | |
|   <PropertyGroup>
 | |
|     <TargetFramework>netcoreapp3.0</TargetFramework>
 | |
|     <OutputType>Exe</OutputType>
 | |
|     <AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
 | |
|     <RootNamespace>MyCompanyName.MyProjectName</RootNamespace>
 | |
|     <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
 | |
|     <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
 | |
|     <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
 | |
|     <PreserveCompilationContext>true</PreserveCompilationContext>
 | |
|   </PropertyGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
 | |
|     <ProjectReference Include="..\MyCompanyName.MyProjectName.Application.Tests\MyCompanyName.MyProjectName.Application.Tests.csproj" />
 | |
|     <ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.Web\MyCompanyName.MyProjectName.Web.csproj" />
 | |
|     <ProjectReference Include="..\..\..\..\..\framework\src\Volo.Abp.AspNetCore.TestBase\Volo.Abp.AspNetCore.TestBase.csproj" />
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <ItemGroup>
 | |
|     <Content Include="xunit.runner.json">
 | |
|       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 | |
|       <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
 | |
|     </Content>
 | |
|   </ItemGroup>
 | |
| 
 | |
|   <!-- https://github.com/NuGet/Home/issues/4412 -->
 | |
|   <Target Name="CopyDepsFiles" AfterTargets="Build" Condition="'$(TargetFramework)'!=''">
 | |
|     <ItemGroup>
 | |
|       <DepsFilePaths Include="$([System.IO.Path]::ChangeExtension('%(_ResolvedProjectReferencePaths.FullPath)', '.deps.json'))" />
 | |
|     </ItemGroup>
 | |
| 
 | |
|     <Copy SourceFiles="%(DepsFilePaths.FullPath)" DestinationFolder="$(OutputPath)" Condition="Exists('%(DepsFilePaths.FullPath)')" />
 | |
|   </Target>
 | |
| 
 | |
| </Project>
 |