Skip to content

Commit ed8de82

Browse files
authored
use Releaser v2 config (#8)
1 parent 7650181 commit ed8de82

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

.ldrelease/config.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1+
version: 2
12

23
publications:
34
- url: https://nuget.org/packages/LaunchDarkly.Logging
45
description: NuGet
56

6-
circleci:
7-
windows:
8-
context: org-global
9-
10-
template:
11-
name: dotnet-windows
12-
env:
13-
LD_RELEASE_TEST_TARGET_FRAMEWORK: net46
14-
LD_RELEASE_DOCS_TARGET_FRAMEWORK: netcoreapp2.1 # so the docs will include Logs.CoreLogging
15-
skip:
16-
- test
7+
jobs:
8+
- docker: {}
9+
template:
10+
name: dotnet-linux
11+
env:
12+
LD_RELEASE_TEST_TARGET_FRAMEWORK: net50
13+
LD_RELEASE_DOCS_TARGET_FRAMEWORK: netcoreapp2.1 # so the docs will include Logs.CoreLogging
1714

1815
documentation:
1916
title: LaunchDarkly Logging API for .NET
20-
githubPages: true
17+
gitHubPages: true

test/LaunchDarkly.Logging.Tests/LaunchDarkly.Logging.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TestFramework Condition="'$(TESTFRAMEWORK)' == ''">netcoreapp2.1</TestFramework>
4-
<TargetFramework>$(TESTFRAMEWORK)</TargetFramework>
3+
<TestFramework Condition="'$(TESTFRAMEWORK)' == ''">netcoreapp2.1;net5.0</TestFramework>
4+
<TargetFrameworks>$(TESTFRAMEWORK)</TargetFrameworks>
55
<AssemblyName>LaunchDarkly.Logging.Tests</AssemblyName>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)