File tree Expand file tree Collapse file tree 10 files changed +27
-4
lines changed
NLog.Targets.Stackify/Properties
StackifyLib.AspNetCore/Properties
StackifyLib.CoreLogger/Properties
StackifyLib.ELMAH/Properties
StackifyLib.StackifyTraceListener/Properties
StackifyLib.log4net/Properties Expand file tree Collapse file tree 10 files changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -30,3 +30,5 @@ packages/
3030** /bin /*
3131** /obj /*
3232BuildOutput /
33+ * .pfx
34+ * .snk
Original file line number Diff line number Diff line change 1+ function Remove-SignCode {
2+ param (
3+ $ASMFile
4+ )
5+ Set-Content - Path $ASMFile - Value (Get-Content - Path $ASMFile | Select-String - Pattern AssemblyKeyFileAttribute -NotMatch )
6+ }
7+
8+ $files = @ (Get-ChildItem - Path . - Directory - Filter Stackify* )
9+
10+ foreach ($file in $files ) {
11+ $asmInfo = Get-ChildItem - Path $file / Properties/ AssemblyInfo.cs
12+ Remove-SignCode - ASMFile $asmInfo
13+ }
Original file line number Diff line number Diff line change 1313[ assembly: AssemblyCopyright ( "Copyright © 2015" ) ]
1414[ assembly: AssemblyTrademark ( "" ) ]
1515[ assembly: AssemblyCulture ( "" ) ]
16+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1617
1718// Setting ComVisible to false makes the types in this assembly not visible
1819// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 99[ assembly: AssemblyCompany ( "Stackify" ) ]
1010[ assembly: AssemblyProduct ( "StackifyLib.AspNetCore" ) ]
1111[ assembly: AssemblyTrademark ( "" ) ]
12+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1213
1314// Setting ComVisible to false makes the types in this assembly not visible
1415// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 99[ assembly: AssemblyCompany ( "Stackify" ) ]
1010[ assembly: AssemblyProduct ( "StackifyLib.CoreLogger" ) ]
1111[ assembly: AssemblyTrademark ( "" ) ]
12+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1213
1314// Setting ComVisible to false makes the types in this assembly not visible
1415// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 1313[ assembly: AssemblyCopyright ( "Copyright © 2015" ) ]
1414[ assembly: AssemblyTrademark ( "" ) ]
1515[ assembly: AssemblyCulture ( "" ) ]
16+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1617
1718// Setting ComVisible to false makes the types in this assembly not visible
1819// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 99[ assembly: AssemblyCompany ( "Stackify" ) ]
1010[ assembly: AssemblyProduct ( "StackifyLib.StackifyTraceListener" ) ]
1111[ assembly: AssemblyTrademark ( "" ) ]
12+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1213
1314// Setting ComVisible to false makes the types in this assembly not visible
1415// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 1313[ assembly: AssemblyCopyright ( "Copyright © 2015" ) ]
1414[ assembly: AssemblyTrademark ( "" ) ]
1515[ assembly: AssemblyCulture ( "" ) ]
16+ [ assembly: AssemblyKeyFileAttribute ( "..\\ StackifyLib\\ Netreo.snk" ) ]
1617
1718// Setting ComVisible to false makes the types in this assembly not visible
1819// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 1313[ assembly: AssemblyCopyright ( "Copyright © 2018-2020" ) ]
1414[ assembly: AssemblyTrademark ( "" ) ]
1515[ assembly: AssemblyCulture ( "" ) ]
16+ [ assembly: AssemblyKeyFileAttribute ( "Netreo.snk" ) ]
1617
1718// Setting ComVisible to false makes the types in this assembly not visible
1819// to COM components. If you need to access a type in this assembly from
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <AssemblyTitle >Stackify API</AssemblyTitle >
5- <VersionPrefix >2.2.6 </VersionPrefix >
5+ <VersionPrefix >2.2.7 </VersionPrefix >
66 <TargetFrameworks >netstandard2.0;net40;net45;net451;net452;net46;net461;net462</TargetFrameworks >
77 <AssemblyName >StackifyLib</AssemblyName >
88 <PackageId >StackifyLib</PackageId >
1313 <GenerateAssemblyCompanyAttribute >false</GenerateAssemblyCompanyAttribute >
1414 <GenerateAssemblyProductAttribute >false</GenerateAssemblyProductAttribute >
1515 <GenerateAssemblyCopyrightAttribute >false</GenerateAssemblyCopyrightAttribute >
16- <Version >2.2.6 </Version >
16+ <Version >2.2.7 </Version >
1717 <Authors >StackifyLib</Authors >
1818 <PackageProjectUrl >https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl >
1919 <PackageLicenseUrl >https://github.com/stackify/stackify-api-dotnet/blob/master/LICENSE</PackageLicenseUrl >
2020 <RepositoryUrl >https://github.com/stackify/stackify-api-dotnet</RepositoryUrl >
2121 <RepositoryType >git</RepositoryType >
2222 <PackageIconUrl >https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl >
23- <AssemblyVersion >2.2.6 .0</AssemblyVersion >
24- <FileVersion >2.2.6 .0</FileVersion >
23+ <AssemblyVersion >2.2.7 .0</AssemblyVersion >
24+ <FileVersion >2.2.7 .0</FileVersion >
2525 <PackageReleaseNotes >Remove default internal file logger</PackageReleaseNotes >
26+ <SignAssembly >false</SignAssembly >
2627 </PropertyGroup >
2728
2829 <ItemGroup >
You can’t perform that action at this time.
0 commit comments