Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Features/console execution check merge #12

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c0c58a4
added unit test for execution of console extension
m-isenmann Oct 13, 2021
ba5cce8
updated build number to 7.1
m-isenmann Oct 13, 2021
4a2953a
removed not needed dependencies for some projects
m-isenmann Oct 13, 2021
da7eb8f
removed old dependencies (ManyConsole as code)
m-isenmann Oct 13, 2021
a7fe3f5
updated all projects to current TargetFrameworkVersion v4.8
m-isenmann Oct 13, 2021
2653cac
updated all dependencies (but not ManyConsole and Mono.Options due to…
m-isenmann Oct 14, 2021
f098f69
fixed console execution unit tests with std and error output
m-isenmann Oct 15, 2021
e53c411
updated ManyConsole and removed Mono.Options (due to wrong dependency…
m-isenmann Oct 15, 2021
65d25ce
Changed GetWorkItemPanelView to only scroll WorkItems and not other E…
m-isenmann Oct 15, 2021
ff510e1
updated margin right for combobox row
m-isenmann Oct 15, 2021
e42daa2
remove ScrollViewer and using internal ScrollViewer of ListBox
m-isenmann Oct 15, 2021
2af0fae
All NuGet packages updated to latest versions, due to package depende…
Mar 7, 2022
793c36f
Changed W2T version to 7.1
norschel Mar 22, 2022
6bb392f
Replaced project specific itemgroup for witdatastore native dlls with…
Mar 22, 2022
f1a2fdc
Merge branch '2022-02-TLSConnection' of https://github.com/AITGmbH/Wo…
Mar 22, 2022
ba27753
Updated nuget packages to latest version
Mar 22, 2022
ace5f28
Dowgrade manyconsole to v1 because it's incompatible with current code
Mar 22, 2022
279924f
Dowgrade monooptions to v5 because v6 isnt compatible with manyconsol…
Mar 22, 2022
22753ec
Updated copyright year, added native lib target file as solution item
Mar 22, 2022
027bb6e
merged everything
m-isenmann Jan 10, 2023
60ed0d6
updated ManifestCertificateThumbprint and removed System.Threading.Ta…
m-isenmann Jan 11, 2023
5449f2f
updated yeahr in GlobalAssemblyInfo
m-isenmann Jan 11, 2023
ceaee59
added enabling of TLS 1.2 and TLS 1.3 when SchUseStrongCrypto is not …
m-isenmann Jan 18, 2023
57b0ba7
removed old empty project and corrected target version for project co…
m-isenmann Jan 18, 2023
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
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -328,3 +328,15 @@ ASALocalRun/

# MFractors (Xamarin productivity tool) working folder
.mfractor/
/Sources/TFS.SyncService.Adapter.TFS2010/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.Adapter.TFS2010/Microsoft.WITDataStore64.dll
/Sources/TFS.SyncService.IntegrationTests/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.IntegrationTests/Microsoft.WITDataStore64.dll
/Sources/TFS.SyncService.Model.Tests.Integration/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.Model.Tests.Integration/Microsoft.WITDataStore64.dll
/Sources/TFS.SyncService.Test/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.Test/Microsoft.WITDataStore64.dll
/Sources/TFS.SyncService.View.Word2007/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.View.Word2007/Microsoft.WITDataStore64.dll
/Sources/TFS.SyncService.W2TConsole/Microsoft.WITDataStore32.dll
/Sources/TFS.SyncService.W2TConsole/Microsoft.WITDataStore64.dll
2 changes: 1 addition & 1 deletion Build/azure-pipelines-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ variables:
BuildConfiguration: 'release'
DeploymentType: 'Preview'
MajorVersion: 7
MinorVersion: 0
MinorVersion: 1

name: $(MajorVersion).$(MinorVersion).$(Date:yyMM).$(Date:dd)$(Rev:rr)

Expand Down
6 changes: 3 additions & 3 deletions Sources/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("AIT GmbH & Co. KG")]
[assembly: AssemblyProduct("WordToTFS")]
[assembly: AssemblyCopyright("Copyright © 2020, AIT GmbH & Co. KG")]
[assembly: AssemblyCopyright("Copyright © 2023, AIT GmbH & Co. KG")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("7.0.0.0")]
[assembly: AssemblyFileVersion("7.0.0.0")]
[assembly: AssemblyVersion("7.1.0.0")]
[assembly: AssemblyFileVersion("7.1.0.0")]

// [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

Expand Down
157 changes: 0 additions & 157 deletions Sources/ManyConsole/ConsoleCommand.cs

This file was deleted.

155 changes: 0 additions & 155 deletions Sources/ManyConsole/ConsoleCommandDispatcher.cs

This file was deleted.

10 changes: 0 additions & 10 deletions Sources/ManyConsole/ConsoleHelpAsException.cs

This file was deleted.

Loading