File tree Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ before_install:
25
25
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
26
26
script :
27
27
- sudo dotnet msbuild build.proj /t:BuildNetcore /p:Configuration=$CONFIG || travis_terminate 1
28
- - sudo dotnet tools/StaticAnalysis/bin/$CONFIG/netcoreapp2.1/StaticAnalysis.Netcore.dll -p src/Package/$CONFIG -r src/Package -u
28
+ - sudo dotnet tools/StaticAnalysis/bin/$CONFIG/netcoreapp2.1/StaticAnalysis.Netcore.dll -p src/Package/$CONFIG -r src/Package -u || travis_terminate 1
29
29
- sudo pwsh -NonInteractive -NoLogo -NoProfile -File tools/TestModuleLoading.ps1 || travis_terminate 1
30
30
- sudo dotnet pack src/TestPrerequisites/Common.TestPrerequisites.sln --configuration $CONFIG || travis_terminate 1
31
31
- sudo dotnet test src/Azure.PowerShell.Netcore.Test.sln --filter "AcceptanceType=CheckIn&RunType!=DesktopOnly" --configuration $CONFIG --framework netcoreapp2.0
Original file line number Diff line number Diff line change 12
12
<OutputPath >$(ProjectDir)..\..\..\Package\$(Configuration)\ResourceManager\AzureResourceManager\Az.Aks\</OutputPath >
13
13
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
14
14
<WarningsAsErrors />
15
- <Version >1.1.0.0</Version >
16
15
</PropertyGroup >
17
16
18
17
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
Original file line number Diff line number Diff line change 23
23
[ assembly: ComVisible ( false ) ]
24
24
[ assembly: CLSCompliant ( false ) ]
25
25
[ assembly: Guid ( "a97e0c3e-e389-46a6-b73d-2b9bd6909bdb" ) ]
26
- [ assembly: AssemblyVersion ( "0.0.6 " ) ]
27
- [ assembly: AssemblyFileVersion ( "0.0.6 " ) ]
26
+ [ assembly: AssemblyVersion ( "0.0.5 " ) ]
27
+ [ assembly: AssemblyFileVersion ( "0.0.5 " ) ]
Original file line number Diff line number Diff line change 4
4
<OmitJsonPackage >true</OmitJsonPackage >
5
5
</PropertyGroup >
6
6
7
+ <Import Project =" $(ProjectDir)..\..\..\..\tools\Common.Netcore.Dependencies.targets" />
7
8
8
9
<PropertyGroup >
9
10
<TargetFramework >netstandard2.0</TargetFramework >
19
20
</PropertyGroup >
20
21
21
22
<ItemGroup >
22
- <PackageReference Include =" Microsoft.Azure.Common" Version =" 2.2.0" />
23
- <PackageReference Include =" Hyak.Common" Version =" 1.2.1" />
24
- <PackageReference Include =" PowerShellStandard.Library" Version =" 5.1.0-preview-06" PrivateAssets =" All" />
25
23
<PackageReference Include =" Newtonsoft.Json" Version =" 9.0.1" PrivateAssets =" all" />
26
24
</ItemGroup >
27
25
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ foreach($RMPath in $resourceManagerPaths)
66
66
}
67
67
68
68
Write-Verbose " Removing redundant dlls in $ ( $RMFolder.Name ) "
69
- $removedDlls = Get-ChildItem - Path $RMFolder.FullName - Filter " *.dll" - Recurse | where { $acceptedDlls -notcontains $_.Name }
69
+ $removedDlls = Get-ChildItem - Path $RMFolder.FullName - Filter " *.dll" - Recurse | where { $acceptedDlls -notcontains $_.Name -and ! $_ .FullName.Contains ( " PreloadAssemblies " ) }
70
70
$removedDlls | % { Write-Verbose " Removing $ ( $_.Name ) " ; Remove-Item $_.FullName - Force }
71
71
72
72
Write-Verbose " Removing scripts and psd1 in $ ( $RMFolder.FullName ) "
You can’t perform that action at this time.
0 commit comments