Compare commits
2 Commits
18f510b268
...
5e7b353a90
| Author | SHA1 | Date | |
|---|---|---|---|
| 5e7b353a90 | |||
| d3a54a477b |
@@ -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"
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user