Skip to content

Commit 015ff88

Browse files
authored
Merge pull request #2 from sverigesradio/dev/debug
Dev/debug
2 parents 81de0a9 + 1b9d149 commit 015ff88

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/ContinuousIntegration.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
21
name: ContinuousIntegration Release NuGet
32

4-
# Controls when the action will run. Triggers the workflow on release
53
on:
64
release:
75
types: [published]
86

9-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
107
jobs:
11-
12-
# This workflow contains a single job called "build"
138
build:
14-
# The type of runner that the job will run on
159
runs-on: windows-latest
1610

17-
# Steps represent a sequence of tasks that will be executed as part of the job
1811
steps:
1912
- uses: actions/checkout@v2
2013
- name: Setup .NET Core
@@ -35,5 +28,5 @@ jobs:
3528
name: SR.EmberPlusConsumerLib.NetStandard
3629
path: ./src/Nuget.EmberPlusConsumerLib.NetStandard/bin/PackNuGet/SR.EmberPlusConsumerLib.NetStandard.${{ github.event.release.tag_name }}.nupkg
3730

38-
- name: Publish Nuget Package
31+
- name: Publish NuGet Package
3932
run: dotnet nuget push ./src/Nuget.EmberPlusConsumerLib.NetStandard/bin/PackNuGet/SR.EmberPlusConsumerLib.NetStandard.${{ github.event.release.tag_name }}.nupkg --skip-duplicate --no-symbols true -k ${{secrets.GITHUB_TOKEN}} -s https://nuget.pkg.github.com/sverigesradio/index.json

.github/workflows/ContinuousIntegrationDebug.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
21
name: ContinuousIntegration Debug NuGet
32

43
on:
54
push:
6-
branches:
7-
- '!master'
5+
branches-ignore:
6+
- master
87

98
jobs:
109
build:

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# EmBER+ consumer lib
22
A library that gives you the possibility to create an EmBER+ consumer.
33

4+
45
# How to use?
56
1. Add the NuGet package to your solution
67
2. Initiate the EmBER+ consumer
@@ -55,3 +56,7 @@ There has been some modifications to the source code for .NET Standard adaption.
5556

5657
## Responsible maintainer
5758
- [Team Unicorn](mailto:teamunicorn@sr.se)
59+
60+
61+
## Build
62+
![Workflow](https://github.com/sverigesradio/nuget-ember-plus-consumer-lib/workflows/ContinuousIntegration%20Release%20NuGet/badge.svg)

src/.DS_Store

-6 KB
Binary file not shown.

src/EmberLibConsumer.net/Lawo/FastEnum.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ namespace Lawo
1313
/// <summary>Provides cached implementations for some of the <see cref="Enum"/> methods.</summary>
1414
/// <threadsafety static="true" instance="false"/>
1515
[SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix", Justification = "We reimplement a part of Enum.")]
16+
[CLSCompliant(false)]
1617
public static class FastEnum
1718
{
1819
/// <summary>Provides a fast implementation of a part of the functionality of <see cref="Enum.IsDefined"/>.

src/EmberLibConsumer.net/Lawo/Threading/NativeMethods.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public static class NativeMethods
1515
{
1616
/// <summary>Returns an integer that represents a unique identifier for the current managed thread.</summary>
1717
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate", Justification = "Expensive method.")]
18+
[CLSCompliant(false)]
1819
public static uint GetCurrentThreadId()
1920
{
2021
return Convert.ToUInt32(System.Threading.Thread.CurrentThread.ManagedThreadId);

src/nuget-ember-plus-consumer-lib.sln

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.32112.339
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lawo.EmberPlusSharpTest", "EmberLibConsumer.net\Lawo.EmberPlusSharpTest\Lawo.EmberPlusSharpTest.csproj", "{D93DC0DD-C137-428F-B84B-3F4387124C85}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lawo.EmberPlusSharpTest", "EmberLibConsumer.net\Lawo.EmberPlusSharpTest\Lawo.EmberPlusSharpTest.csproj", "{D93DC0DD-C137-428F-B84B-3F4387124C85}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3896794D-4AD2-4514-BB4C-1B4CDEC1800C}"
99
ProjectSection(SolutionItems) = preProject
1010
EmberLibConsumer.net\CodeAnalysis.ruleset = EmberLibConsumer.net\CodeAnalysis.ruleset
1111
EmberLibConsumer.net\CodeAnalysisDictionary.xml = EmberLibConsumer.net\CodeAnalysisDictionary.xml
1212
EmberLibConsumer.net\CodeCoverage.runsettings = EmberLibConsumer.net\CodeCoverage.runsettings
1313
..\.github\workflows\ContinuousIntegration.yml = ..\.github\workflows\ContinuousIntegration.yml
14+
..\.github\workflows\ContinuousIntegrationDebug.yml = ..\.github\workflows\ContinuousIntegrationDebug.yml
1415
EmberLibConsumer.net\Logo.ico = EmberLibConsumer.net\Logo.ico
1516
EmberLibConsumer.net\README.md = EmberLibConsumer.net\README.md
1617
..\README.md = ..\README.md

0 commit comments

Comments
 (0)