|
| 1 | +<Project> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net10.0</TargetFramework> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <ImplicitUsings>enable</ImplicitUsings> |
| 8 | + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
| 9 | + <WarningsAsErrors>Nullable</WarningsAsErrors> |
| 10 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 11 | + <NoWarn>$(NoWarn);CS1591</NoWarn> <!-- suppress "missing XML comment" until we backfill --> |
| 12 | + </PropertyGroup> |
| 13 | + |
| 14 | + <!-- Central package version pinning via Directory.Packages.props --> |
| 15 | + <PropertyGroup> |
| 16 | + <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> |
| 17 | + </PropertyGroup> |
| 18 | + |
| 19 | + <!-- Package metadata (applies to any project with IsPackable=true) --> |
| 20 | + <PropertyGroup> |
| 21 | + <Authors>ShellUI</Authors> |
| 22 | + <Company>ShellUI</Company> |
| 23 | + <Copyright>Copyright © 2026 ShellUI</Copyright> |
| 24 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 25 | + <PackageProjectUrl>https://github.com/shellui-dev/shelldocs</PackageProjectUrl> |
| 26 | + <RepositoryUrl>https://github.com/shellui-dev/shelldocs</RepositoryUrl> |
| 27 | + <RepositoryType>git</RepositoryType> |
| 28 | + <PackageTags>blazor;docs;documentation;framework;shellui;shadcn;fumadocs;tailwind</PackageTags> |
| 29 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 30 | + <IncludeSymbols>true</IncludeSymbols> |
| 31 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 32 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 33 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <!-- Default: nothing is packable unless the project opts in --> |
| 37 | + <PropertyGroup> |
| 38 | + <IsPackable>false</IsPackable> |
| 39 | + </PropertyGroup> |
| 40 | + |
| 41 | + <!-- Include README in packages that opt in --> |
| 42 | + <ItemGroup Condition="'$(IsPackable)' == 'true'"> |
| 43 | + <None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" /> |
| 44 | + </ItemGroup> |
| 45 | + |
| 46 | +</Project> |
0 commit comments