Skip to content

Commit 0245d22

Browse files
committed
Add project files.
1 parent 1e5c2a7 commit 0245d22

37 files changed

+1697
-0
lines changed

App.config

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
<appSettings>
7+
<add key="ClientSettingsProvider.ServiceUri" value="" />
8+
</appSettings>
9+
<system.web>
10+
<membership defaultProvider="ClientAuthenticationMembershipProvider">
11+
<providers>
12+
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
13+
</providers>
14+
</membership>
15+
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
16+
<providers>
17+
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
18+
</providers>
19+
</roleManager>
20+
</system.web>
21+
</configuration>

Application.xaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="Application"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:SimpleCam"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

Application.xaml.vb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Class Application
2+
' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
3+
' can be handled in this file.
4+
5+
6+
7+
End Class

MainWindow.xaml

Lines changed: 213 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)