Skip to content
This repository was archived by the owner on Dec 12, 2020. It is now read-only.

Commit 45d04bf

Browse files
authored
docs: Remove NoBuild=true from metapackage project
1 parent 12884f7 commit 45d04bf

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ Remove `Class1.cs` file.
463463

464464
Modify project file:
465465
- Add `<Sdk>` element
466-
- Set `NoBuild=true` and `IncludeBuildOutput=false`
466+
- Set `IncludeBuildOutput=false`
467467
- Add `NupkgAdditionalDependency` in ItemGroup
468468
```xml
469469
<!-- Duplicator/Duplicator.csproj -->
@@ -474,9 +474,7 @@ Modify project file:
474474
<PropertyGroup>
475475
<!-- Declare the TargetFramework(s) the same as in your Attributes package -->
476476
<TargetFramework>netstandard1.0</TargetFramework>
477-
<!-- This project contains no files, so building can be skipped -->
478-
<NoBuild>true</NoBuild>
479-
<!-- Since we don't build, there'll be no build output -->
477+
<!-- We don't want any build output in package -->
480478
<IncludeBuildOutput>false</IncludeBuildOutput>
481479
</PropertyGroup>
482480

0 commit comments

Comments
 (0)