Skip to content

Commit faec0ec

Browse files
committed
fix build
1 parent c8d6439 commit faec0ec

File tree

6 files changed

+25
-14
lines changed

6 files changed

+25
-14
lines changed

HamEvent/ClientApp/src/assets/i18n/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"HamEventTitle": "HamEvent diploma.",
55
"HamEventDescription": "Obtain your QSO certificate quick and fast at the touch of a button!",
66
"Search QSO": "Search QSO",
7-
"Copyright": "2024, QSO Banat Club, Timisoara, Romania",
7+
"Copyright": "2025, QSO Banat Club, Timisoara, Romania",
88
"Loading...": "Loading...",
99
"No entries...": "No entries...",
1010
"HamEvent QSOs": "HamEvent - QSOs",

HamEvent/ClientApp/src/assets/i18n/ro.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"HamEventTitle": "Diploma eveniment radioamatori.",
55
"HamEventDescription": "Obțineți certificatul QSO rapid și ușor la atingerea unui buton!",
66
"Search QSO": "Caută QSO",
7-
"Copyright": "2024, Clubul QSO Banat, Timisoara, Romania",
7+
"Copyright": "2025, Clubul QSO Banat, Timisoara, Romania",
88
"Loading...": "Se încarcă...",
99
"No entries...": "Fără intrări...",
1010
"HamEvent QSOs": "Eveniment radioamatori - QSO-uri",

HamEvent/Controllers/HamEventController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public ActionResult Post(Event hamevent)
335335
Subject = "Event Added",
336336
User = _mailerSettings.Username,
337337
Key = _mailerSettings.Password,
338-
//EnableSsl = _mailerSettings.EnableSSL,
338+
EnableSsl = _mailerSettings.EnableSSL,
339339
Model = new { id = myevent.Id, secretKey = secretKey }
340340
};
341341
_logger.LogDebug(MyLogEvents.SendingEmail, "Sending Email");

HamEvent/Controllers/VerificationController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public async Task<IActionResult> SendVerificationEmail(string email)
3838
Subject = "Confirm Email",
3939
User = _mailerSettings.Username,
4040
Key = _mailerSettings.Password,
41-
//EnableSsl = _mailerSettings.EnableSSL,
41+
EnableSsl = _mailerSettings.EnableSSL,
4242
Model = new { token= _tokenService.GenerateToken(email) }
4343
};
4444
_logger.LogDebug(MyLogEvents.SendingEmail, "Sending Email");

HamEvent/HamEvent.csproj

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,12 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="AdifLib" Version="1.6.3" />
15-
<PackageReference Include="AutoMapper" Version="12.0.1" />
16-
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
17-
<PackageReference Include="CoreMailer" Version="3.0.0" />
14+
<PackageReference Include="AutoMapper" Version="14.0.0" />
1815
<PackageReference Include="elmahcore" Version="2.1.2" />
19-
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="9.0.4" />
20-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.4" />
21-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.4" />
22-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.4">
16+
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="8.0.16" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.16" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.16" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.16">
2320
<PrivateAssets>all</PrivateAssets>
2421
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2522
</PackageReference>
@@ -37,7 +34,6 @@
3734

3835
<ItemGroup>
3936
<None Remove="App_Data\QSOs.db" />
40-
<None Remove="ClientApp\src\app\nav-menu\nav-menu.component.spec.ts" />
4137
<None Remove="resources\diploma.html" />
4238
<None Remove="Shared\AddEvent.html" />
4339
<None Remove="Shared\ValidateEmail.html" />
@@ -80,9 +76,12 @@
8076
</ItemGroup>
8177

8278
<ItemGroup>
83-
<TypeScriptCompile Include="ClientApp\src\app\nav-menu\nav-menu.component.spec.ts" />
79+
<ProjectReference Include="..\AdifLib\AdifLib\AdifLib.csproj" />
80+
<ProjectReference Include="..\CoreMailer\CoreMailer\CoreMailer.csproj" />
8481
</ItemGroup>
8582

83+
84+
8685
<Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') ">
8786
<!-- Ensure Node.js is installed -->
8887
<Exec Command="node --version" ContinueOnError="true">
@@ -108,4 +107,6 @@
108107
</ResolvedFileToPublish>
109108
</ItemGroup>
110109
</Target>
110+
111+
<ProjectExtensions><VisualStudio><UserProperties clientapp_4package_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
111112
</Project>

HamEventMVP.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Deploy", "Deploy", "{AB17FE
4444
simply-web-deploy\Deploy\action.yml = simply-web-deploy\Deploy\action.yml
4545
EndProjectSection
4646
EndProject
47+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AdifLib", "AdifLib\AdifLib\AdifLib.csproj", "{94D64628-F1C7-49D3-A68E-5EB7962FA06F}"
48+
EndProject
4749
Global
4850
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4951
Debug|Any CPU = Debug|Any CPU
@@ -58,6 +60,14 @@ Global
5860
{1A6792F1-7EF9-450C-AC1E-7FD26ACD8EAD}.Debug|Any CPU.Build.0 = Debug|Any CPU
5961
{1A6792F1-7EF9-450C-AC1E-7FD26ACD8EAD}.Release|Any CPU.ActiveCfg = Release|Any CPU
6062
{1A6792F1-7EF9-450C-AC1E-7FD26ACD8EAD}.Release|Any CPU.Build.0 = Release|Any CPU
63+
{3458928A-E6F3-4FA6-878B-B3729C14838B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
64+
{3458928A-E6F3-4FA6-878B-B3729C14838B}.Debug|Any CPU.Build.0 = Debug|Any CPU
65+
{3458928A-E6F3-4FA6-878B-B3729C14838B}.Release|Any CPU.ActiveCfg = Release|Any CPU
66+
{3458928A-E6F3-4FA6-878B-B3729C14838B}.Release|Any CPU.Build.0 = Release|Any CPU
67+
{94D64628-F1C7-49D3-A68E-5EB7962FA06F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68+
{94D64628-F1C7-49D3-A68E-5EB7962FA06F}.Debug|Any CPU.Build.0 = Debug|Any CPU
69+
{94D64628-F1C7-49D3-A68E-5EB7962FA06F}.Release|Any CPU.ActiveCfg = Release|Any CPU
70+
{94D64628-F1C7-49D3-A68E-5EB7962FA06F}.Release|Any CPU.Build.0 = Release|Any CPU
6171
EndGlobalSection
6272
GlobalSection(SolutionProperties) = preSolution
6373
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)