Skip to content

Commit e422597

Browse files
committed
1.5.2
1 parent eaeb3bf commit e422597

19 files changed

+1213
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
BCPacketTester/bin/
2+
BCPacketTester/obj/
3+
BCPacketTester/.vs/

BCPacketTester.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31129.286
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BCPacketTester", "BCPacketTester\BCPacketTester.csproj", "{AD8D9477-C556-4275-9514-1CD8C76451D1}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{AD8D9477-C556-4275-9514-1CD8C76451D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{AD8D9477-C556-4275-9514-1CD8C76451D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{AD8D9477-C556-4275-9514-1CD8C76451D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{AD8D9477-C556-4275-9514-1CD8C76451D1}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {EA4322A3-7D8C-4ED5-8FCA-DE44529AF744}
24+
EndGlobalSection
25+
EndGlobal

BCPacketTester/App.xaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Application x:Class="BCPacketTester.App"
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:BCPacketTester"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

BCPacketTester/App.xaml.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace BCPacketTester
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}

BCPacketTester/AssemblyInfo.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Windows;
2+
3+
[assembly: ThemeInfo(
4+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
5+
//(used if a resource is not found in the page,
6+
// or application resource dictionaries)
7+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
8+
//(used if a resource is not found in the page,
9+
// app, or any theme specific resource dictionaries)
10+
)]

BCPacketTester/BCPTKey.pfx

1.72 KB
Binary file not shown.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net5.0-windows</TargetFramework>
6+
<UseWPF>true</UseWPF>
7+
<PackageIcon>Segoe MDL2 Assets Regular - Network Physical.png</PackageIcon>
8+
<SignAssembly>false</SignAssembly>
9+
<AssemblyOriginatorKeyFile>BCPTKey.pfx</AssemblyOriginatorKeyFile>
10+
<Version>1.4.0</Version>
11+
</PropertyGroup>
12+
13+
<ItemGroup>
14+
<None Remove="Icon1.ico" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<EmbeddedResource Include="..\..\..\..\Documents\GitHub\BackChannel-Client\Assets\Segoe MDL2 Assets Regular - Network Physical.png">
19+
<Pack>True</Pack>
20+
<PackagePath></PackagePath>
21+
</EmbeddedResource>
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<Resource Include="Icon1.ico" />
26+
</ItemGroup>
27+
28+
</Project>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<_LastSelectedProfileId>C:\Users\jhset\source\repos\BCPacketTester\BCPacketTester\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
5+
<NameOfLastUsedPublishProfile>BCPacketTester20210608014628</NameOfLastUsedPublishProfile>
6+
</PropertyGroup>
7+
<ItemGroup>
8+
<ApplicationDefinition Update="App.xaml">
9+
<SubType>Designer</SubType>
10+
</ApplicationDefinition>
11+
</ItemGroup>
12+
<ItemGroup>
13+
<Page Update="MainWindow.xaml">
14+
<SubType>Designer</SubType>
15+
</Page>
16+
</ItemGroup>
17+
</Project>

BCPacketTester/Icon1.ico

4.19 KB
Binary file not shown.

BCPacketTester/MainWindow.xaml

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

0 commit comments

Comments
 (0)