Skip to content

Commit 33cdd92

Browse files
authored
Merge pull request #167 from Codectory/release/1.19.20
Release/1.19.20
2 parents 6513996 + b0bad6c commit 33cdd92

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1394
-609
lines changed

.gitignore

+57-24
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

66
# User-specific files
77
*.rsuser
@@ -17,22 +17,17 @@
1717
mono_crash.*
1818

1919
# Build results
20-
[Dd]ebug/
21-
[Dd]ebugPublic/
22-
[Rr]elease/
23-
[Rr]eleases/
24-
**/x64/
25-
**/x86/
26-
**/Debug_x64/
27-
**/Debug_Any/
28-
**/Debug_x86/
29-
**/Release_x64/
30-
**/Release_Any/
31-
**/Release_x86/
3220
[Dd]ebug_x64/
3321
[Dd]ebug_x86/
3422
[Rr]elease_x64/
3523
[Rr]elease_x86/
24+
[Dd]ebug/
25+
[Dd]ebugPublic/
26+
[Rr]elease/
27+
[Rr]eleases/
28+
x64/
29+
x86/
30+
[Ww][Ii][Nn]32/
3631
[Aa][Rr][Mm]/
3732
[Aa][Rr][Mm]64/
3833
bld/
@@ -71,6 +66,9 @@ project.lock.json
7166
project.fragment.lock.json
7267
artifacts/
7368

69+
# ASP.NET Scaffolding
70+
ScaffoldingReadMe.txt
71+
7472
# StyleCop
7573
StyleCopReport.xml
7674

@@ -88,6 +86,8 @@ StyleCopReport.xml
8886
*.pgc
8987
*.pgd
9088
*.rsp
89+
# but not Directory.Build.rsp, as it configures directory-level build defaults
90+
!Directory.Build.rsp
9191
*.sbr
9292
*.tlb
9393
*.tli
@@ -96,6 +96,7 @@ StyleCopReport.xml
9696
*.tmp_proj
9797
*_wpftmp.csproj
9898
*.log
99+
*.tlog
99100
*.vspscc
100101
*.vssscc
101102
.builds
@@ -137,9 +138,6 @@ _ReSharper*/
137138
*.[Rr]e[Ss]harper
138139
*.DotSettings.user
139140

140-
# JustCode is a .NET coding add-in
141-
.JustCode
142-
143141
# TeamCity is a build add-in
144142
_TeamCity*
145143

@@ -150,6 +148,11 @@ _TeamCity*
150148
.axoCover/*
151149
!.axoCover/settings.json
152150

151+
# Coverlet is a free, cross platform Code Coverage Tool
152+
coverage*.json
153+
coverage*.xml
154+
coverage*.info
155+
153156
# Visual Studio code coverage results
154157
*.coverage
155158
*.coveragexml
@@ -297,6 +300,17 @@ node_modules/
297300
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
298301
*.vbw
299302

303+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
304+
*.vbp
305+
306+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
307+
*.dsw
308+
*.dsp
309+
310+
# Visual Studio 6 technical files
311+
*.ncb
312+
*.aps
313+
300314
# Visual Studio LightSwitch build output
301315
**/*.HTMLClient/GeneratedArtifacts
302316
**/*.DesktopClient/GeneratedArtifacts
@@ -353,6 +367,9 @@ ASALocalRun/
353367
# Local History for Visual Studio
354368
.localhistory/
355369

370+
# Visual Studio History (VSHistory) files
371+
.vshistory/
372+
356373
# BeatPulse healthcheck temp database
357374
healthchecksdb
358375

@@ -361,11 +378,27 @@ MigrationBackup/
361378

362379
# Ionide (cross platform F# VS Code tools) working folder
363380
.ionide/
364-
Source/Debug_x64/de/HDRProfile.resources.dll
365-
Source/Debug_x64/HDRProfile.exe
366-
Source/HDRController/Release_x64/HDRController.dll
367-
Source/HDRController/Release_x64/HDRController.lib
368-
Source/Debug_x64/HDRProfile_Settings.xml
369-
Source/Debug_x64/HDRProfile.exe
370-
Source/Release_x64/de/HDRProfile.resources.dll
371-
Source/Release_x64/HDRProfile_Settings.xml
381+
382+
# Fody - auto-generated XML schema
383+
FodyWeavers.xsd
384+
385+
# VS Code files for those working on multiple tools
386+
.vscode/*
387+
!.vscode/settings.json
388+
!.vscode/tasks.json
389+
!.vscode/launch.json
390+
!.vscode/extensions.json
391+
*.code-workspace
392+
393+
# Local History for Visual Studio Code
394+
.history/
395+
396+
# Windows Installer files from build outputs
397+
*.cab
398+
*.msi
399+
*.msix
400+
*.msm
401+
*.msp
402+
403+
# JetBrains Rider
404+
*.sln.iml

Source/AutoActions.Audio/AutoActions.Audio.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>AutoActions.AudioManager</RootNamespace>
1111
<AssemblyName>AutoActions.AudioManager</AssemblyName>
12-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1718
<DebugSymbols>true</DebugSymbols>

Source/AutoActions.Core/AutoActions.Core.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>AutoActions.Core</RootNamespace>
1111
<AssemblyName>AutoActions.Core</AssemblyName>
12-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1718
<DebugSymbols>true</DebugSymbols>

Source/AutoActions.Displays/AutoActions.Displays.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>AutoActions.Displays</RootNamespace>
1111
<AssemblyName>AutoActions.Displays</AssemblyName>
12-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
1515
<NuGetPackageImportStamp>
1616
</NuGetPackageImportStamp>
17+
<TargetFrameworkProfile />
1718
</PropertyGroup>
1819
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1920
<DebugSymbols>true</DebugSymbols>

Source/AutoActions.Displays/Locale.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/AutoActions.ProjectResources/AutoActions.ProjectResources.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>AutoActions.ProjectResources</RootNamespace>
1111
<AssemblyName>AutoActions.ProjectResources</AssemblyName>
12-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1718
<DebugSymbols>true</DebugSymbols>

Source/AutoActions.ProjectResources/Locale_Enums.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/AutoActions.ProjectResources/ProjectLocales.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/AutoActions.Setup/AutoActions.Setup.wixproj

-37
This file was deleted.

Source/AutoActions.Setup/Product.wxs

-30
This file was deleted.

Source/AutoActions.Threading/AutoActions.Threading.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>AutoActions.Threading</RootNamespace>
1111
<AssemblyName>AutoActions.Threading</AssemblyName>
12-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1718
<DebugSymbols>true</DebugSymbols>

Source/AutoActions.Updater/App.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
55
</startup>
6-
</configuration>
6+
</configuration>

Source/AutoActions.Updater/AutoActions.Updater.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@
88
<OutputType>Exe</OutputType>
99
<RootNamespace>AutoActions.Updater</RootNamespace>
1010
<AssemblyName>AutoActions.Updater</AssemblyName>
11-
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1414
<Deterministic>true</Deterministic>
1515
<NuGetPackageImportStamp>
1616
</NuGetPackageImportStamp>
17+
<TargetFrameworkProfile />
1718
</PropertyGroup>
1819
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1920
<DebugSymbols>true</DebugSymbols>

0 commit comments

Comments
 (0)