diff --git a/Modules/Microsoft.PowerShell.ThreadJob/.ci/compliance.yml b/Modules/Microsoft.PowerShell.ThreadJob/.ci/compliance.yml index 149f417..f31c948 100644 --- a/Modules/Microsoft.PowerShell.ThreadJob/.ci/compliance.yml +++ b/Modules/Microsoft.PowerShell.ThreadJob/.ci/compliance.yml @@ -61,7 +61,7 @@ steps: displayName: 'Run BinSkim ' inputs: InputType: Basic - AnalyzeTarget: '$(BUILD_SOURCE)\Microsoft.PowerShell.SecretManagement\Microsoft.PowerShell.SecretManagement.dll' + AnalyzeTarget: '$(BUILD_SOURCE)\Microsoft.PowerShell.ThreadJob\Microsoft.PowerShell.ThreadJob.dll' AnalyzeSymPath: 'SRV*' AnalyzeVerbose: true AnalyzeHashes: true @@ -88,6 +88,7 @@ steps: - task: securedevelopmentteam.vss-secure-development-tools.build-task-uploadtotsa.TSAUpload@1 displayName: 'TSA upload to Codebase: PSThreadJob_201912 Stamp: Azure' inputs: + tsaStamp: Azure codeBaseName: PSThreadJob_201912 tsaVersion: TsaV2 uploadFortifySCA: false diff --git a/Modules/Microsoft.PowerShell.ThreadJob/doBuild.ps1 b/Modules/Microsoft.PowerShell.ThreadJob/doBuild.ps1 index f3ca6a1..c430fa2 100644 --- a/Modules/Microsoft.PowerShell.ThreadJob/doBuild.ps1 +++ b/Modules/Microsoft.PowerShell.ThreadJob/doBuild.ps1 @@ -22,8 +22,8 @@ function DoBuild Copy-Item "${SrcPath}/${ModuleName}.psd1" "${OutDirectory}/${ModuleName}" # Copy format files here - Write-Verbose -Verbose "Copy-Item ${SrcPath}/${ModuleName}.format.ps1xml to ${OutDirectory}/${ModuleName}" - copy-item "${SrcPath}/${ModuleName}.format.ps1xml" "${OutDirectory}/${ModuleName}" + # Write-Verbose -Verbose "Copy-Item ${SrcPath}/${ModuleName}.format.ps1xml to ${OutDirectory}/${ModuleName}" + # copy-item "${SrcPath}/${ModuleName}.format.ps1xml" "${OutDirectory}/${ModuleName}" # Copy help Write-Verbose -Verbose -Message "Copying help files to '$BuildOutPath'" diff --git a/Modules/Microsoft.PowerShell.ThreadJob/sign-module-files.xml b/Modules/Microsoft.PowerShell.ThreadJob/sign-module-files.xml index 038c148..8e574d7 100644 --- a/Modules/Microsoft.PowerShell.ThreadJob/sign-module-files.xml +++ b/Modules/Microsoft.PowerShell.ThreadJob/sign-module-files.xml @@ -3,7 +3,7 @@ - - + + diff --git a/Modules/Microsoft.PowerShell.ThreadJob/src/code/AssemblyInfo.cs b/Modules/Microsoft.PowerShell.ThreadJob/src/code/AssemblyInfo.cs deleted file mode 100644 index 10dba83..0000000 --- a/Modules/Microsoft.PowerShell.ThreadJob/src/code/AssemblyInfo.cs +++ /dev/null @@ -1,33 +0,0 @@ -/********************************************************************++ -Copyright (c) Microsoft Corporation. All rights reserved. ---********************************************************************/ - -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyDescription("Implements PowerShell Start-ThreadJob")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("aba48637-8365-4c8f-90b5-dc424f5f5281")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")]