Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Build
run: dotnet build --verbosity quiet
- name: Test
run: dotnet test --no-build --verbosity minimal
35 changes: 35 additions & 0 deletions .github/workflows/nuget-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: NuGet Publish
on:
workflow_dispatch:
inputs:
publish_nuget:
description: 'Publish to NuGet.org'
required: false
type: boolean
default: false
publish_myget:
description: 'Publish to MyGet'
required: false
type: boolean
default: false
jobs:
pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Pack
run: bash scripts/nuget-pack.sh
- name: Push to NuGet.org
if: ${{ inputs.publish_nuget }}
run: bash scripts/nuget-push.sh --source nuget --api-key-env NUGET_API_KEY
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
- name: Push to MyGet
if: ${{ inputs.publish_myget }}
run: bash scripts/nuget-push.sh --source myget --api-key-env MYGET_API_KEY
env:
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ publish/

# NuGet Packages
*.nupkg
artifacts/
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
Expand Down
322 changes: 48 additions & 274 deletions Cfg.Net.sln

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cfg.Net.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeStyle/FileHeader/FileHeaderText/@EntryValue">$SOLUTION$&#xD;
An Alternative .NET Configuration Handler&#xD;
Copyright 2015-2019 Dale Newman&#xD;
Copyright 2015-2026 Dale Newman&#xD;
&#xD;
Licensed under the Apache License, Version 2.0 (the "License");&#xD;
you may not use this file except in compliance with the License.&#xD;
Expand Down
34 changes: 0 additions & 34 deletions Nuget/Cfg.Net.Environment.nuspec

This file was deleted.

28 changes: 0 additions & 28 deletions Nuget/Cfg.Net.Parser.Json.Net.nuspec

This file was deleted.

27 changes: 0 additions & 27 deletions Nuget/Cfg.Net.Parser.Xml.Linq.nuspec

This file was deleted.

28 changes: 0 additions & 28 deletions Nuget/Cfg.Net.Parser.YamlDotNet.nuspec

This file was deleted.

35 changes: 0 additions & 35 deletions Nuget/Cfg.Net.Reader.nuspec

This file was deleted.

27 changes: 0 additions & 27 deletions Nuget/Cfg.Net.Readers.FileSystemWatcherReader.nuspec

This file was deleted.

35 changes: 0 additions & 35 deletions Nuget/Cfg.Net.Shorthand.nuspec

This file was deleted.

31 changes: 0 additions & 31 deletions Nuget/Cfg.Net.nuspec

This file was deleted.

19 changes: 0 additions & 19 deletions Nuget/myget.bat

This file was deleted.

11 changes: 0 additions & 11 deletions Nuget/nuget.bat

This file was deleted.

Binary file removed Nuget/nuget.exe
Binary file not shown.
Loading