File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ foreach ($src in ls src/*) {
21
21
echo " build: Packaging project in $src "
22
22
23
23
if ($suffix ) {
24
- & dotnet pack - c Release -- include - source - o ..\..\artifacts -- version- suffix= $suffix
24
+ & dotnet pack - c Release - o ..\..\artifacts -- version- suffix= $suffix
25
25
} else {
26
- & dotnet pack - c Release -- include - source - o ..\..\artifacts
26
+ & dotnet pack - c Release - o ..\..\artifacts
27
27
}
28
28
29
29
if ($LASTEXITCODE -ne 0 ) { exit 1 }
Original file line number Diff line number Diff line change 20
20
<RootNamespace >Serilog</RootNamespace >
21
21
</PropertyGroup >
22
22
23
+ <PropertyGroup >
24
+ <IncludeSymbols >true</IncludeSymbols >
25
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
26
+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
27
+ <EmbedUntrackedSources >true</EmbedUntrackedSources >
28
+ <IsPackable >true</IsPackable >
29
+ </PropertyGroup >
30
+
23
31
<ItemGroup >
24
32
<None Include =" ..\..\assets\icon.png" Pack =" true" Visible =" false" PackagePath =" " />
25
33
</ItemGroup >
36
44
<PackageReference Include =" Serilog.Sinks.Debug" Version =" 2.0.0" />
37
45
<PackageReference Include =" Serilog.Settings.Configuration" Version =" 3.3.0" />
38
46
<PackageReference Include =" Serilog.Formatting.Compact" Version =" 1.1.0" />
47
+ <PackageReference Include =" Microsoft.SourceLink.Github" Version =" 1.1.1" >
48
+ <PrivateAssets >all</PrivateAssets >
49
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
50
+ </PackageReference >
39
51
</ItemGroup >
40
52
41
53
<ItemGroup Condition =" '$(TargetFramework)' == 'netstandard2.0'" >
You can’t perform that action at this time.
0 commit comments