-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (27 loc) · 1.48 KB
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (27 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project>
<!-- App projects emit their bin output into a single shared folder (src/out), like a publish, so
wslcc.exe and wslccd.exe (and their dependencies) sit side by side. Test projects are excluded
so the runtime folder stays clean; they keep their default per-project bin. Intermediate output
(obj) always stays per-project. -->
<PropertyGroup Condition="!$(MSBuildProjectDirectory.Contains('$([System.IO.Path]::DirectorySeparatorChar)tests$([System.IO.Path]::DirectorySeparatorChar)'))">
<OutputPath>$(MSBuildThisFileDirectory)src\out\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<Authors>Adriano Repetti</Authors>
<Company>Adriano Repetti</Company>
<Product>WSLCC</Product>
<Copyright>Copyright (c) Adriano Repetti</Copyright>
<PackageProjectUrl>https://github.com/arepetti/wslcc</PackageProjectUrl>
<RepositoryUrl>https://github.com/arepetti/wslcc</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<VersionPrefix>0.1.0</VersionPrefix>
</PropertyGroup>
</Project>