Skip to content

Commit bb4e945

Browse files
committed
Set IsPackable in Directory.Build.props to false by default
1 parent 199b324 commit bb4e945

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Directory.Build.props

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,17 @@
2020
<UseArtifactsOutput>true</UseArtifactsOutput>
2121
</PropertyGroup>
2222

23-
<PropertyGroup>
23+
<PropertyGroup Label="package metadata">
2424
<version>1.0.0-preview.1</version>
2525
<PackageIcon>icon.png</PackageIcon>
2626
<PackageTags>autolaunch autostart</PackageTags>
2727
<PackageProjectUrl>https://github.com/Linlccc/AutoLaunch</PackageProjectUrl>
2828
<RepositoryUrl>https://github.com/Linlccc/AutoLaunch</RepositoryUrl>
2929
<Description>AutoLaunch provides a cross-platform feature for automatically launching applications or executable files at login, suitable for .NET.</Description>
30-
30+
31+
<!-- You need to manually set IsPackable in the packaged project to true -->
32+
<IsPackable>false</IsPackable>
33+
<Title>$(AssemblyName)</Title>
3134
<PackageId>$(AssemblyName)</PackageId>
3235
<PackageReadmeFile Condition="Exists('README.md') Or Exists('$(SlnReadme)')">README.md</PackageReadmeFile>
3336
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)