Skip to content

Commit d0ffb4b

Browse files
committed
Updated project configuration for NuGet publishing.
1 parent 7a753e3 commit d0ffb4b

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

SqlServerSimulator/SqlServerSimulator.csproj

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4+
<Title>SQL Server Simulator</Title>
5+
<AssemblyTitle>SQL Server Simulator</AssemblyTitle>
6+
<Authors>Ryan Lamansky</Authors>
7+
<Description>A simulated SQL Server that runs inside your .NET application.</Description>
8+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
9+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
10+
<PackageReleaseNotes>SQL Server feature compatiblity is limited, see the README for more information.</PackageReleaseNotes>
11+
<PackageProjectUrl>https://github.com/RyanLamansky/sql-server-simulator</PackageProjectUrl>
12+
<Copyright>Copyright © Ryan Lamansky. All rights reserved.</Copyright>
13+
<PackageTags>SqlServer SQL</PackageTags>
14+
<RepositoryUrl>https://github.com/RyanLamansky/sql-server-simulator</RepositoryUrl>
15+
<RepositoryType>git</RepositoryType>
16+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
17+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18+
<PackageReadmeFile>README.md</PackageReadmeFile>
419
<TargetFramework>net10.0</TargetFramework>
520
<Nullable>enable</Nullable>
621
<GenerateDocumentationFile>True</GenerateDocumentationFile>
@@ -16,10 +31,8 @@
1631

1732
<ItemGroup>
1833
<None Include="..\.editorconfig" Link=".editorconfig" />
19-
<None Include="..\README.md">
20-
<Pack>True</Pack>
21-
<PackagePath>\</PackagePath>
22-
</None>
34+
<None Include="../LICENSE" Pack="true" PackagePath="/" />
35+
<None Include="../README.md" Pack="true" PackagePath="/"/>
2336
</ItemGroup>
2437

2538
</Project>

0 commit comments

Comments
 (0)