diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10ce938..7d03a80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,15 +15,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: true fetch-depth: 0 - - name: Install .NET 7.0 - uses: actions/setup-dotnet@v1 + - name: Install .NET 8.0 + uses: actions/setup-dotnet@v4 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build, Test, Pack, Publish shell: bash diff --git a/src/SharpYaml.Tests/SharpYaml.Tests.csproj b/src/SharpYaml.Tests/SharpYaml.Tests.csproj index 896020f..fb35a36 100644 --- a/src/SharpYaml.Tests/SharpYaml.Tests.csproj +++ b/src/SharpYaml.Tests/SharpYaml.Tests.csproj @@ -1,19 +1,27 @@  - net48;net7.0 + net48;net8.0 false + 10 - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + diff --git a/src/SharpYaml.sln.DotSettings b/src/SharpYaml.sln.DotSettings index 0b7d7c9..c77f318 100644 --- a/src/SharpYaml.sln.DotSettings +++ b/src/SharpYaml.sln.DotSettings @@ -18,4 +18,5 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - \ No newline at end of file + + True \ No newline at end of file diff --git a/src/SharpYaml/SharpYaml.csproj b/src/SharpYaml/SharpYaml.csproj index b9fac4b..d13a221 100644 --- a/src/SharpYaml/SharpYaml.csproj +++ b/src/SharpYaml/SharpYaml.csproj @@ -34,11 +34,11 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/src/global.json b/src/global.json index aaf58f5..2aa85a4 100644 --- a/src/global.json +++ b/src/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.100", + "version": "8.0.100", "rollForward": "latestMinor", "allowPrerelease": false }