Skip to content

Commit 5755a66

Browse files
committed
Updated Build packages to 15.9.30
1 parent aa4a965 commit 5755a66

4 files changed

Lines changed: 43 additions & 8 deletions

File tree

CreatePackages.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SET PackageVersion=1.4.2
1+
SET PackageVersion=1.4.3
22
SET Configuration=Debug
33

44
REM msbuild /p:Configuration=%Configuration%

src/VersionInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
//------------------------------------------------------------------------------
1010

1111
[assembly: System.Reflection.AssemblyCompany("Estrellas de Esperanza")]
12-
[assembly: System.Reflection.AssemblyCopyright("Copyright © 2025 Estrellas de Esperanza.")]
13-
[assembly: System.Reflection.AssemblyFileVersion("10.0.14")]
14-
[assembly: System.Reflection.AssemblyVersion("10.0.14")]
15-
[assembly: System.Reflection.AssemblyInformationalVersion("10.0.14")]
16-
[assembly: System.Resources.SatelliteContractVersion("10.0.14")]
12+
[assembly: System.Reflection.AssemblyCopyright("Copyright © 2026 Estrellas de Esperanza.")]
13+
[assembly: System.Reflection.AssemblyFileVersion("10.0.15")]
14+
[assembly: System.Reflection.AssemblyVersion("10.0.15")]
15+
[assembly: System.Reflection.AssemblyInformationalVersion("10.0.15")]
16+
[assembly: System.Resources.SatelliteContractVersion("10.0.15")]
1717

1818

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net10.0",
4+
"frameworks": [
5+
{
6+
"name": "Microsoft.NETCore.App",
7+
"version": "10.0.0"
8+
},
9+
{
10+
"name": "Microsoft.AspNetCore.App",
11+
"version": "10.0.0"
12+
}
13+
],
14+
"configProperties": {
15+
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
16+
}
17+
}
18+
}

src/WebFormsForCore.Build/WebFormsForCore.Build.csproj

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,18 @@
6767
</ItemGroup>
6868

6969
<ItemGroup>
70+
<None Remove="EstrellasDeEsperanza.WebFormsForCore.Build.NetCore.runtimeconfig.json" />
7071
<None Remove="FakeStrongName.targets" />
7172
<None Remove="netstandard.dll" />
7273
<None Remove="System.Runtime.dll" />
7374
</ItemGroup>
7475

76+
<ItemGroup Condition="$(TargetFramework) == 'netstandard2.0'">
77+
<Content Include="EstrellasDeEsperanza.WebFormsForCore.Build.runtimeconfig.json">
78+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
79+
</Content>
80+
</ItemGroup>
81+
7582
<ItemGroup>
7683
<None Include="FakeStrongName.targets">
7784
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
@@ -86,9 +93,19 @@
8693
<PackageReference Include="Mono.Cecil" Version="0.11.6" />
8794
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
8895
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
89-
<PackageReference Include="System.Linq" Version="4.3.0" />
96+
<PackageReference Include="System.Linq" Version="4.3.0" GeneratePathProperty="true" />
9097
</ItemGroup>
91-
98+
99+
<Target Name="CopyPackageAssembly" AfterTargets="Build" Condition="'$(TargetFramework)' == 'netstandard2.0'">
100+
<ItemGroup>
101+
<PkgAssembly Include="$(PkgSystem_Linq)\lib\netstandard1.6\System.Linq.dll" />
102+
</ItemGroup>
103+
104+
<Copy
105+
SourceFiles="@(PkgAssembly)"
106+
DestinationFolder="$(OutputPath)" />
107+
</Target>
108+
92109
<ItemGroup Condition="$(TargetFramework) == 'net48'">
93110
<!--<Reference Include="System.Web" Version="4.0.0.0" />-->
94111
<Reference Include="System" Version="4.0.0.0" />

0 commit comments

Comments
 (0)