Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WiFi credentials file for unit tests is now added through a template #270

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/WebServerE2ETests/Template/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!WiFi.cs
6 changes: 6 additions & 0 deletions tests/WebServerE2ETests/WebServerE2ETests.nfproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,10 @@
<ProjectConfigurationsDeclaredAsItems />
</ProjectCapabilities>
</ProjectExtensions>
<Target Name="CopyWiFiTemplate" Condition="!Exists('$(MSBuildProjectDirectory)\WiFi.cs')" BeforeTargets="BeforeBuild">
<ItemGroup>
<WIFI_TEMPLATE Include="$(MSBuildProjectDirectory)\Template\WiFi.cs"/>
</ItemGroup>
<Copy SourceFiles="@(WIFI_TEMPLATE)" DestinationFolder="$(MSBuildProjectDirectory)" />
</Target>
</Project>
12 changes: 12 additions & 0 deletions tests/WebServerE2ETests/WiFi.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace WebServerE2ETests
{
public partial class Program
{
private const string Ssid = "yourSSID";
private const string Password = "YourPassword";

}
}