Compare commits

...

2 Commits

Author SHA1 Message Date
5e7b353a90 Merge pull request '* Added missing nuget source' (#45) from DelforSender into master
Reviewed-on: #45
2026-01-20 12:13:40 +00:00
d3a54a477b * Added missing nuget source
Some checks failed
ci/woodpecker/pr/woodpecker Pipeline failed
2026-01-20 13:12:26 +01:00
2 changed files with 13 additions and 2 deletions

View File

@@ -75,6 +75,17 @@ steps:
exit 0
fi
cat <<EOF > NuGet.Config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="BaGet" value="http://baget:80/v3/index.json" allowInsecureConnections="true" />
</packageSources>
</configuration>
EOF
echo "=== Restore zmienionych projektów ==="
while read csproj; do
echo "→ dotnet restore $csproj"

View File

@@ -27,9 +27,9 @@ public class EmailGeneratorService(IConfiguration configuration) : IEmailGenerat
mailMessage.Attachments.Add(new Attachment(attachment));
}
foreach (string toAddress in email.To)
foreach (string to in email.To)
{
mailMessage.To.Add(toAddress);
mailMessage.To.Add(to);
}
foreach (string ccAddress in email.Cc)