-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
22 lines (18 loc) · 1.33 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OpenTapVersion>9.19.0</OpenTapVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <!-- Removes the `netstandard2.0` from directory output -->
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish> <!-- Remove dependency on razor, this is required to run without the razor dependencies -->
<PreserveCompilationContext>false</PreserveCompilationContext> <!-- Does not copy refs folder that contains dependency that are already installed with OpenTAP -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> <!-- Copies dependencies from nuget, this is required to run. Without them asp is not copied to output. -->
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</OutputPath>
</PropertyGroup>
<!-- Disable the two warnings that get spammed a billion times -->
<PropertyGroup>
<NoWarn>$(NoWarn);NU1702;MSB3277;</NoWarn>
</PropertyGroup>
</Project>