Skip to content

Commit 86adec6

Browse files
authored
Added value return to Prevent methods (#22) (#23)
1 parent 7d79bec commit 86adec6

21 files changed

+1359
-1153
lines changed

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
environment:
2-
VERSION_MINOR: 2.3.1
2+
VERSION_MINOR: 3.0.0
33
VERSION_BUILD: $(VERSION_MINOR).$(APPVEYOR_BUILD_NUMBER)
44

55
version: $(VERSION_MINOR).{build}
@@ -17,7 +17,7 @@ skip_commits:
1717
- '**/.git*'
1818
- '**/*.MD'
1919

20-
image: Visual Studio 2019
20+
image: Visual Studio 2022
2121
configuration: Release
2222

2323
init:
@@ -59,14 +59,14 @@ artifacts:
5959
deploy:
6060
- provider: NuGet
6161
api_key:
62-
secure: rK9w7sJT/ph1VLem3Z/MXczY/lrsxs8SpbqvCEBIVYZluLtY6XNd4OrFun1Wv1Ec
62+
secure: NRcCXZyQD08WgXPxj5i4Gmt2UR6Ug4/SH7FTwtVPsfNp76rgthe/HwSRSb1L1XY/
6363
skip_symbols: true
6464
on:
6565
branch: dev
6666

6767
- provider: NuGet
6868
api_key:
69-
secure: rK9w7sJT/ph1VLem3Z/MXczY/lrsxs8SpbqvCEBIVYZluLtY6XNd4OrFun1Wv1Ec
69+
secure: NRcCXZyQD08WgXPxj5i4Gmt2UR6Ug4/SH7FTwtVPsfNp76rgthe/HwSRSb1L1XY/
7070
skip_symbols: true
7171
on:
7272
branch: master

src/ArgSentry/ArgSentry.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
<PropertyGroup>
44
<PackageReleaseNotes>Updated NuGet package licensing metadata and included README doc.</PackageReleaseNotes>
55

6+
<LangVersion>12.0</LangVersion>
7+
<Nullable>enable</Nullable>
8+
<ImplicitUsings>enable</ImplicitUsings>
9+
610
<TargetFrameworks>
711
netstandard2.1;
812
netstandard2.0;

0 commit comments

Comments
 (0)