This repository has been archived by the owner on Jun 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
679 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2012 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Searcher", "Searcher\Searcher.csproj", "{702CED04-C475-4585-AB66-F9E55369A453}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|x86 = Debug|x86 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{702CED04-C475-4585-AB66-F9E55369A453}.Debug|x86.ActiveCfg = Debug|x86 | ||
{702CED04-C475-4585-AB66-F9E55369A453}.Debug|x86.Build.0 = Debug|x86 | ||
{702CED04-C475-4585-AB66-F9E55369A453}.Release|x86.ActiveCfg = Release|x86 | ||
{702CED04-C475-4585-AB66-F9E55369A453}.Release|x86.Build.0 = Release|x86 | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Properties StartupConfiguration="{702CED04-C475-4585-AB66-F9E55369A453}|Default"> | ||
<MonoDevelop.Ide.Workbench ActiveDocument="Searcher/Program.cs"> | ||
<Files> | ||
<File FileName="Searcher/Program.cs" Line="121" Column="93" /> | ||
</Files> | ||
</MonoDevelop.Ide.Workbench> | ||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug|x86" /> | ||
<MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<BreakpointStore /> | ||
</MonoDevelop.Ide.DebuggingService.Breakpoints> | ||
<MonoDevelop.Ide.ItemProperties.Searcher PreferredExecutionTarget="MonoDevelop.Default" /> | ||
<MonoDevelop.Ide.DebuggingService.PinnedWatches /> | ||
<MultiItemStartupConfigurations /> | ||
</Properties> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
|
||
// Information about this assembly is defined by the following attributes. | ||
// Change them to the values specific to your project. | ||
|
||
[assembly: AssemblyTitle("Searcher")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("")] | ||
[assembly: AssemblyCopyright("AngeloRosa")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". | ||
// The form "{Major}.{Minor}.*" will automatically update the build and revision, | ||
// and "{Major}.{Minor}.{Build}.*" will update just the revision. | ||
|
||
[assembly: AssemblyVersion("1.0.*")] | ||
|
||
// The following attributes are used to specify the signing key for the assembly, | ||
// if desired. See the Mono documentation for more information about signing. | ||
|
||
//[assembly: AssemblyDelaySign(false)] | ||
//[assembly: AssemblyKeyFile("")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||
<ProjectGuid>{702CED04-C475-4585-AB66-F9E55369A453}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>Searcher</RootNamespace> | ||
<AssemblyName>Searcher</AssemblyName> | ||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug</OutputPath> | ||
<DefineConstants>DEBUG;</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ExternalConsole>true</ExternalConsole> | ||
<PlatformTarget>x86</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ExternalConsole>true</ExternalConsole> | ||
<PlatformTarget>x86</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<ApplicationIcon>ico.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Program.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="ico.ico" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' "> | ||
<StartAction>Project</StartAction> | ||
</PropertyGroup> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
48b8b0a84582e74d64b9fd847f5167747b6cc51a |
Binary file added
BIN
+5.94 KB
Searcher/Searcher/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
1 change: 1 addition & 0 deletions
1
Searcher/Searcher/obj/x86/Debug/Searcher.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
aacc6aff42db7b6b2b62cb0cd420df9007de6525 |
10 changes: 10 additions & 0 deletions
10
Searcher/Searcher/obj/x86/Debug/Searcher.csproj.FileListAbsolute.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/Users/angelorosa/Desktop/Searcher/Searcher/bin/Debug/Searcher.exe | ||
/Users/angelorosa/Desktop/Searcher/Searcher/bin/Debug/Searcher.pdb | ||
/Users/angelorosa/Desktop/Searcher/Searcher/obj/x86/Debug/Searcher.csproj.CoreCompileInputs.cache | ||
/Users/angelorosa/Desktop/Searcher/Searcher/obj/x86/Debug/Searcher.exe | ||
/Users/angelorosa/Desktop/Searcher/Searcher/obj/x86/Debug/Searcher.pdb | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\bin\Debug\Searcher.exe | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\bin\Debug\Searcher.pdb | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\obj\x86\Debug\Searcher.csprojResolveAssemblyReference.cache | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\obj\x86\Debug\Searcher.exe | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\obj\x86\Debug\Searcher.pdb |
Binary file added
BIN
+1004 Bytes
Searcher/Searcher/obj/x86/Debug/Searcher.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
48b8b0a84582e74d64b9fd847f5167747b6cc51a |
Binary file added
BIN
+5.95 KB
Searcher/Searcher/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
Searcher/Searcher/obj/x86/Release/Searcher.csproj.FileListAbsolute.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\bin\Release\Searcher.exe | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\obj\x86\Release\Searcher.csprojResolveAssemblyReference.cache | ||
C:\Users\Angelo\Desktop\Searcher\Searcher\obj\x86\Release\Searcher.exe |
Binary file added
BIN
+1004 Bytes
Searcher/Searcher/obj/x86/Release/Searcher.csprojResolveAssemblyReference.cache
Binary file not shown.
Binary file not shown.
Binary file not shown.