Skip to content

Commit e155ae4

Browse files
committed
🔧 Trying to fix NuGet data-settings
1 parent 005f64e commit e155ae4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

SimpleRavenDb.sln

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30204.135
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.32014.148
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorldDomination.SimpleRavenDb.SampleWebApplication", "src\WorldDomination.SimpleRavenDb.SampleWebApplication\WorldDomination.SimpleRavenDb.SampleWebApplication.csproj", "{4D38BFAA-BA83-4DA7-A328-3C90CDB0ACAA}"
77
EndProject
@@ -13,7 +13,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorldDomination.SimpleRaven
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{F0307BEC-A3D6-4965-9F8E-7792F623D1D4}"
1515
ProjectSection(SolutionItems) = preProject
16-
appveyor.yml = appveyor.yml
1716
CHANGELOG.md = CHANGELOG.md
1817
docker-compose.localservices.yml = docker-compose.localservices.yml
1918
global.json = global.json

src/WorldDomination.SimpleRavenDb.SampleApplication/WorldDomination.SimpleRavenDb.SampleApplication.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
<Nullable>enable</Nullable>
7+
<IsPackable>false</IsPackable>
78
</PropertyGroup>
89

910
<ItemGroup>

src/WorldDomination.SimpleRavenDb.Tests/WorldDomination.SimpleRavenDb.Tests.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
5-
65
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87

src/WorldDomination.SimpleRavenDb/WorldDomination.SimpleRavenDb.csproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
<PackageTags>ravendb dotnet c# world-domination unicorn magicalunicorn magical-unicorn</PackageTags>
1818
<PackageReleaseNotes>https://github.com/PureKrome/SimpleRavenDB/blob/master/CHANGELOG.md</PackageReleaseNotes>
1919

20-
<IsPackable>true</IsPackable>
21-
2220
<!-- Source Link. REF: https://github.com/dotnet/sourcelink -->
2321
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2422
<EmbedUntrackedSources>true</EmbedUntrackedSources>
@@ -30,7 +28,10 @@
3028
<ItemGroup>
3129
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
3230
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
33-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
31+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
32+
<PrivateAssets>all</PrivateAssets>
33+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
34+
</PackageReference>
3435
<PackageReference Include="RavenDB.Client" Version="5.3.1" />
3536
<PackageReference Include="Polly" Version="7.2.2" />
3637
</ItemGroup>

0 commit comments

Comments
 (0)