Skip to content

Commit eb0f9c6

Browse files
authored
Add files via upload
0 parents  commit eb0f9c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+10248
-0
lines changed

1st.png

30.6 KB
Loading

2nd.png

36.2 KB
Loading

APRSWin.csproj

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<ProductVersion>8.0.50727</ProductVersion>
6+
<SchemaVersion>2.0</SchemaVersion>
7+
<ProjectGuid>{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>APRSWin</RootNamespace>
11+
<AssemblyName>APRSWin</AssemblyName>
12+
<ApplicationIcon>Toolbar-Public.ico</ApplicationIcon>
13+
</PropertyGroup>
14+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15+
<DebugSymbols>true</DebugSymbols>
16+
<DebugType>full</DebugType>
17+
<Optimize>false</Optimize>
18+
<OutputPath>bin\Debug\</OutputPath>
19+
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<ErrorReport>prompt</ErrorReport>
21+
<WarningLevel>4</WarningLevel>
22+
</PropertyGroup>
23+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
24+
<DebugType>pdbonly</DebugType>
25+
<Optimize>true</Optimize>
26+
<OutputPath>bin\Release\</OutputPath>
27+
<DefineConstants>TRACE</DefineConstants>
28+
<ErrorReport>prompt</ErrorReport>
29+
<WarningLevel>4</WarningLevel>
30+
</PropertyGroup>
31+
<ItemGroup>
32+
<Reference Include="AgwpePort, Version=0.1.0.0, Culture=neutral, processorArchitecture=MSIL">
33+
<SpecificVersion>False</SpecificVersion>
34+
<HintPath>.\AgwpePort.dll</HintPath>
35+
</Reference>
36+
<Reference Include="NaviMapNet, Version=1.0.6534.18762, Culture=neutral, processorArchitecture=MSIL">
37+
<SpecificVersion>False</SpecificVersion>
38+
<HintPath>..\..\ADDR_SEARCH\_MAPNIK_TILE_RENDERER\NaviMapNet\bin\Debug\NaviMapNet.dll</HintPath>
39+
<Private>True</Private>
40+
</Reference>
41+
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" />
42+
<Reference Include="System" />
43+
<Reference Include="System.Data" />
44+
<Reference Include="System.Deployment" />
45+
<Reference Include="System.Drawing" />
46+
<Reference Include="System.Web" />
47+
<Reference Include="System.Windows.Forms" />
48+
<Reference Include="System.Xml" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<Compile Include="aprsview.cs" />
52+
<Compile Include="ax25kiss.cs" />
53+
<Compile Include="Form1.cs">
54+
<SubType>Form</SubType>
55+
</Compile>
56+
<Compile Include="Form1.Designer.cs">
57+
<DependentUpon>Form1.cs</DependentUpon>
58+
</Compile>
59+
<Compile Include="Form2.cs">
60+
<SubType>Form</SubType>
61+
</Compile>
62+
<Compile Include="Form2.Designer.cs">
63+
<DependentUpon>Form2.cs</DependentUpon>
64+
</Compile>
65+
<Compile Include="KISS.cs" />
66+
<Compile Include="Program.cs" />
67+
<Compile Include="Properties\AssemblyInfo.cs" />
68+
<EmbeddedResource Include="Form1.resx">
69+
<SubType>Designer</SubType>
70+
<DependentUpon>Form1.cs</DependentUpon>
71+
</EmbeddedResource>
72+
<EmbeddedResource Include="Form2.resx">
73+
<SubType>Designer</SubType>
74+
<DependentUpon>Form2.cs</DependentUpon>
75+
</EmbeddedResource>
76+
<EmbeddedResource Include="Properties\Resources.resx">
77+
<Generator>ResXFileCodeGenerator</Generator>
78+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
79+
<SubType>Designer</SubType>
80+
</EmbeddedResource>
81+
<Compile Include="Properties\Resources.Designer.cs">
82+
<AutoGen>True</AutoGen>
83+
<DependentUpon>Resources.resx</DependentUpon>
84+
<DesignTime>True</DesignTime>
85+
</Compile>
86+
<None Include="Properties\Settings.settings">
87+
<Generator>SettingsSingleFileGenerator</Generator>
88+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
89+
</None>
90+
<Compile Include="Properties\Settings.Designer.cs">
91+
<AutoGen>True</AutoGen>
92+
<DependentUpon>Settings.settings</DependentUpon>
93+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
94+
</Compile>
95+
<Compile Include="Utils.cs">
96+
<SubType>Component</SubType>
97+
</Compile>
98+
<Compile Include="XMLSaved.cs" />
99+
</ItemGroup>
100+
<ItemGroup>
101+
<None Include="2nd.png" />
102+
<None Include="1st.png" />
103+
<Content Include="Toolbar-Public.ico" />
104+
</ItemGroup>
105+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
106+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
107+
Other similar extension points exist, see Microsoft.Common.targets.
108+
<Target Name="BeforeBuild">
109+
</Target>
110+
<Target Name="AfterBuild">
111+
</Target>
112+
-->
113+
</Project>

APRSWin.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 9.00
3+
# Visual Studio 2005
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "APRSWin", "APRSWin.csproj", "{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{04628387-A0F2-45A0-A9CB-3AAE9C537D9F}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

AgwpePort.dll

21.5 KB
Binary file not shown.

Form1.Designer.cs

Lines changed: 180 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)