Skip to content

Commit 1cc31f7

Browse files
committed
v1.2.0
1 parent 72f0520 commit 1cc31f7

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/msdo-installer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class MsdoInstaller {
5454
let msdoPackagesDirectory = path.join(msdoDirectory, 'versions');
5555
tl.debug(`msdoPackagesDirectory = ${msdoPackagesDirectory}`);
5656
this.ensureDirectory(msdoPackagesDirectory);
57-
let msdoVersionsDirectory = path.join(msdoPackagesDirectory, 'microsoft.security.codeanalysis.cli');
57+
let msdoVersionsDirectory = path.join(msdoPackagesDirectory, 'microsoft.security.devops.cli');
5858
tl.debug(`msdoVersionsDirectory = ${msdoVersionsDirectory}`);
5959
if (this.isInstalled(msdoVersionsDirectory, cliVersion)) {
6060
return;

lib/msdo-task-lib.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework Condition=" '$(TargetFramework)' == '' ">netcoreapp3.1</TargetFramework>
5-
<MsdoPackageName Condition=" '$(MsdoPackageName)' == '' ">Microsoft.Security.CodeAnalysis.Cli</MsdoPackageName>
5+
<MsdoPackageName Condition=" '$(MsdoPackageName)' == '' ">Microsoft.Security.DevOps.Cli</MsdoPackageName>
66
<MsdoPackageVersion Condition=" '$(MsdoPackageVersion)' == '' ">0.*</MsdoPackageVersion>
77
</PropertyGroup>
88

lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-security-devops-azdevops-task-lib",
3-
"version": "1.0.0",
3+
"version": "1.2.0",
44
"description": "Microsoft Security DevOps for Azure DevOps task library.",
55
"author": "Microsoft Corporation",
66
"license": "MIT",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microsoft-security-devops-azdevops-task-lib",
3-
"version": "1.0.0",
3+
"version": "1.2.0",
44
"description": "Microsoft Security DevOps for Azure DevOps task library.",
55
"author": "Microsoft Corporation",
66
"license": "MIT",

src/msdo-installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class MsdoInstaller {
3333
tl.debug(`msdoPackagesDirectory = ${msdoPackagesDirectory}`);
3434
this.ensureDirectory(msdoPackagesDirectory);
3535

36-
let msdoVersionsDirectory = path.join(msdoPackagesDirectory, 'microsoft.security.codeanalysis.cli');
36+
let msdoVersionsDirectory = path.join(msdoPackagesDirectory, 'microsoft.security.devops.cli');
3737
tl.debug(`msdoVersionsDirectory = ${msdoVersionsDirectory}`);
3838

3939
if (this.isInstalled(msdoVersionsDirectory, cliVersion)) {

src/msdo-task-lib.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework Condition=" '$(TargetFramework)' == '' ">netcoreapp3.1</TargetFramework>
5-
<MsdoPackageName Condition=" '$(MsdoPackageName)' == '' ">Microsoft.Security.CodeAnalysis.Cli</MsdoPackageName>
5+
<MsdoPackageName Condition=" '$(MsdoPackageName)' == '' ">Microsoft.Security.DevOps.Cli</MsdoPackageName>
66
<MsdoPackageVersion Condition=" '$(MsdoPackageVersion)' == '' ">0.*</MsdoPackageVersion>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)