Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ps dropbin - test pr, dotn accept #110

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
43b71f4
Removing submodule
Jun 21, 2021
39d1ded
Adding actual module
Jun 21, 2021
4c97dba
Create PullRequest.yml
worseTyler Jun 22, 2021
4980368
update readme with dev infor
twofingerrightclick Aug 24, 2021
e3e6b74
Fixed tests and handled Aggregate Exceptions.
CDobbins1 Aug 26, 2021
dd6b2fb
Updated Dropbox Api version to support PKCE auth flow and removed dep…
CDobbins1 Aug 27, 2021
b373449
Switched to PKCE OAuth flow.
CDobbins1 Aug 27, 2021
8223297
Get-Revisions and Set-Revision Initial files
twofingerrightclick Aug 27, 2021
636d35c
essentials of get and set revisions cmdlets done
twofingerrightclick Aug 27, 2021
1b8bb09
Merge pull request #107 from IntelliTect/aus/RevisionCmdlets
twofingerrightclick Aug 27, 2021
7636966
Handled AggregateException for GetChildItems and added a simple DateT…
CDobbins1 Aug 30, 2021
c1995a0
Fixed null expire date exception on token.
CDobbins1 Aug 30, 2021
6fec2c3
Changed AccessToken to be handled by Credential Manager.
CDobbins1 Aug 30, 2021
f68702f
Change Console output for set revision
twofingerrightclick Aug 30, 2021
f7e0f2a
Update module version info
twofingerrightclick Aug 30, 2021
c9a5874
Changed ModuleVersion to 1.0.0.0
CDobbins1 Aug 30, 2021
a67f7c5
Merge latest main
twofingerrightclick Aug 30, 2021
e0720b2
Update PullRequest.yml
twofingerrightclick Aug 31, 2021
dd772d9
modify deploy action
twofingerrightclick Aug 31, 2021
b6ab148
Added refresh token support to PKCE flow.
CDobbins1 Aug 31, 2021
d45f1e7
Added RemoveCredential tests.
CDobbins1 Aug 31, 2021
ed2ec94
Update contributing readme
twofingerrightclick Aug 31, 2021
38b3b8e
update workflows to only build PSDropbin's csproj, not test proj
twofingerrightclick Aug 31, 2021
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
Prev Previous commit
update workflows to only build PSDropbin's csproj, not test proj
twofingerrightclick committed Aug 31, 2021
commit 38b3b8e34c0287a9540913e2e4f744f586c0a969
2 changes: 1 addition & 1 deletion .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ jobs:
foreach ($module in $modules) {
if ($module.FullName -match $powerShellDropboxProviderModuleName){
Write-Host "$($powerShellDropboxProviderModuleName) module was changed. Building latest version..."
$solutionPath = Join-Path $module.FullName "$($powerShellDropboxProviderModuleName).sln"
$solutionPath = Join-Path $module.FullName "IntelliTect.$($powerShellDropboxProviderModuleName)" "IntelliTect.$($powerShellDropboxProviderModuleName).csproj"
dotnet build $solutionPath
break
}
9 changes: 9 additions & 0 deletions .github/workflows/PullRequest.yml
Original file line number Diff line number Diff line change
@@ -30,7 +30,16 @@ jobs:
run: |
$items = Get-ChildItem -Include *.sln -Recurse
foreach ($item in $items){
if ($item -notmatch 'PSDropBin'){
dotnet build $item
}
}
#build PSDropBin.csproj only (not entire solution as test proj won't build)
$items = Get-ChildItem -Include *.csproj -Recurse
foreach ($item in $items){
if ($item -match 'PSDropBin' -and $item -notmatch 'Tests'){
dotnet build $item
}
}
- name: DotNet Test
run: |
1 change: 1 addition & 0 deletions Modules/IntelliTect.PSDropbin/PSDropBin.sln
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ Global
{D2C43456-1BFA-4539-9F4A-C08B3D85B327}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D2C43456-1BFA-4539-9F4A-C08B3D85B327}.Release|Any CPU.Build.0 = Release|Any CPU
{3AE70642-216F-4669-84FF-C4C003082CBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3AE70642-216F-4669-84FF-C4C003082CBC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3AE70642-216F-4669-84FF-C4C003082CBC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3AE70642-216F-4669-84FF-C4C003082CBC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection