File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ ! WiFi.cs
Original file line number Diff line number Diff line change 73
73
<ProjectConfigurationsDeclaredAsItems />
74
74
</ProjectCapabilities >
75
75
</ProjectExtensions >
76
+ <Target Name =" CopyWiFiTemplate" Condition =" !Exists('$(MSBuildProjectDirectory)\WiFi.cs')" BeforeTargets =" BeforeBuild" >
77
+ <ItemGroup >
78
+ <WIFI_TEMPLATE Include =" $(MSBuildProjectDirectory)\Template\WiFi.cs" />
79
+ </ItemGroup >
80
+ <Copy SourceFiles =" @(WIFI_TEMPLATE)" DestinationFolder =" $(MSBuildProjectDirectory)" />
81
+ </Target >
76
82
</Project >
Original file line number Diff line number Diff line change
1
+ // Licensed to the .NET Foundation under one or more agreements.
2
+ // The .NET Foundation licenses this file to you under the MIT license.
3
+
4
+ namespace WebServerE2ETests
5
+ {
6
+ public partial class Program
7
+ {
8
+ private const string Ssid = "yourSSID" ;
9
+ private const string Password = "YourPassword" ;
10
+
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments