Skip to content

Commit 30f26ce

Browse files
authored
Publish symbol package (#786)
1 parent 24cda03 commit 30f26ce

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Jint.Benchmark/Jint.Benchmark.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<AssemblyName>Jint.Benchmark</AssemblyName>
55
<OutputType>Exe</OutputType>
6-
<PackageId>Jint.Benchmark</PackageId>
76
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
87
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
98
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
@@ -15,6 +14,7 @@
1514
<AssemblyOriginatorKeyFile>..\Jint\Jint.snk</AssemblyOriginatorKeyFile>
1615
<SignAssembly>true</SignAssembly>
1716
<LangVersion>8</LangVersion>
17+
<IsPackable>false</IsPackable>
1818
</PropertyGroup>
1919
<ItemGroup>
2020
<None Include=".\Scripts\**" CopyToOutputDirectory="PreserveNewest" />

Jint.Repl/Jint.Repl.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<OutputType>Exe</OutputType>
5+
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67
<ItemGroup>
78
<ProjectReference Include="..\Jint\Jint.csproj" />

Jint/Directory.Build.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
<PackageId>Jint</PackageId>
1111
<PackageTags>javascript, interpreter</PackageTags>
1212
<PackageProjectUrl>https://github.com/sebastienros/jint</PackageProjectUrl>
13-
<PackageLicenseUrl>https://raw.githubusercontent.com/sebastienros/jint/master/LICENSE.txt</PackageLicenseUrl>
13+
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
1414

15-
<!-- SourceLink support -->
1615
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1716
<EmbedUntrackedSources>true</EmbedUntrackedSources>
18-
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
17+
<IncludeSymbols>true</IncludeSymbols>
18+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1919

2020
</PropertyGroup>
2121

appveyor.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ test_script:
2727
- dotnet test .\Jint.Tests.Ecma\Jint.Tests.Ecma.csproj -c Release
2828
- dotnet test .\Jint.Tests.Test262\Jint.Tests.Test262.csproj -c Release
2929
artifacts:
30-
- path: 'Jint\**\*.nupkg'
30+
- path: 'Jint\**\*.*nupkg'
3131
deploy:
3232
- provider: NuGet
3333
on:
@@ -51,5 +51,4 @@ deploy:
5151
server: https://www.nuget.org/api/v2/package
5252
api_key:
5353
secure: yZBBCLlJTphpHCezRUxyDny1mBbDw7xFG/2Rwt21A8khKp6KJCxFEYx4k9IihOjO
54-
skip_symbols: true
55-
artifact: /.*\.nupkg/
54+
artifact: /.*\.*nupkg/

0 commit comments

Comments
 (0)