-
Notifications
You must be signed in to change notification settings - Fork 23
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
1 parent
ce3b657
commit 5dedfca
Showing
215 changed files
with
698 additions
and
609 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 |
---|---|---|
|
@@ -263,5 +263,8 @@ __pycache__/ | |
# macOS | ||
.DS_Store | ||
|
||
# NuGet publish folder | ||
Publish | ||
|
||
# Angular publish folder from examples | ||
dist |
7 changes: 7 additions & 0 deletions
7
Examples/Simple/App.Linux/SpiderEye.Example.Simple.Linux.csproj
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,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Shared\SpiderEye.Example.Simple.Shared.proj" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Linux\SpiderEye.Linux.csproj" /> | ||
</ItemGroup> | ||
</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,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Shared\SpiderEye.Example.Simple.Shared.proj" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Mac\SpiderEye.Mac.csproj" /> | ||
</ItemGroup> | ||
</Project> |
11 changes: 11 additions & 0 deletions
11
Examples/Simple/App.Windows/SpiderEye.Example.Simple.Windows.csproj
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,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
<Import Project="..\Shared\SpiderEye.Example.Simple.Shared.proj" /> | ||
|
||
<PropertyGroup> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Windows\SpiderEye.Windows.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
18 changes: 18 additions & 0 deletions
18
Examples/Simple/Shared/SpiderEye.Example.Simple.Shared.proj
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,18 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Shared\Program.cs" Link="Program.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- The App folder is where all our html, css, js, etc. files are --> | ||
<EmbeddedResource Include="..\Shared\App\**" Link="App\%(Filename)%(Extension)"> | ||
<!-- this retains the original filename of the embedded files (required to located them later) --> | ||
<LogicalName>App\%(RecursiveDir)%(Filename)%(Extension)</LogicalName> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
</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,30 @@ | ||
@ECHO OFF | ||
SETLOCAL | ||
|
||
CD .. | ||
CALL :PublishProject Windows win-x64 | ||
IF %ERRORLEVEL% NEQ 0 ( | ||
ECHO Publish failed | ||
EXIT /B 1 | ||
) | ||
|
||
CALL :PublishProject Linux linux-x64 | ||
IF %ERRORLEVEL% NEQ 0 ( | ||
ECHO Publish failed | ||
EXIT /B 1 | ||
) | ||
|
||
CALL :PublishProject Mac osx-x64 | ||
IF %ERRORLEVEL% NEQ 0 ( | ||
ECHO Publish failed | ||
EXIT /B 1 | ||
) | ||
|
||
ECHO Done! | ||
|
||
EXIT /B 0 | ||
|
||
:PublishProject | ||
ECHO Publishing for %1... | ||
CALL dotnet publish App.%1\SpiderEye.Example.Simple.%1.csproj -c Release -f netcoreapp3.0 -r %2 -o Publish/%1 > NUL | ||
EXIT /B |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Shared\SpiderEye.Example.Spa.Shared.proj" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Linux\SpiderEye.Linux.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
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,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Shared\SpiderEye.Example.Spa.Shared.proj" /> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Mac\SpiderEye.Mac.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
Examples/Spa/App.Windows/SpiderEye.Example.Spa.Windows.csproj
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,12 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> | ||
<Import Project="..\Shared\SpiderEye.Example.Spa.Shared.proj" /> | ||
|
||
<PropertyGroup> | ||
<UseWindowsForms>true</UseWindowsForms> | ||
<ApplicationIcon>Icons\icon.ico</ApplicationIcon> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\Source\SpiderEye.Windows\SpiderEye.Windows.csproj" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
namespace SpiderEye.Example.Spa.Client | ||
{ | ||
/// <summary> | ||
/// This is just a marker to easily get a reference to this library. | ||
/// Like so: typeof(DummyMarker).Assembly | ||
/// </summary> | ||
public sealed class DummyMarker | ||
{ | ||
} | ||
} |
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,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TypeScriptCompileBlocked>True</TypeScriptCompileBlocked> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Remove="node_modules\**" /> | ||
<None Remove="node_modules\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- The dist folder is where compiled Angular files are --> | ||
<EmbeddedResource Include="Angular\dist\**"> | ||
<!-- this retains the original filename of the embedded files (required to located them later) --> | ||
<LogicalName>%(RelativeDir)%(Filename)%(Extension)</LogicalName> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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,20 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Icons\**\*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Shared\Program.cs" Link="Program.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Client\SpiderEye.Example.Spa.Client.csproj" /> | ||
</ItemGroup> | ||
</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
17 changes: 0 additions & 17 deletions
17
Examples/SpiderEye.Example.Simple/SpiderEye.Example.Simple.csproj
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
Examples/SpiderEye.Example.Spa/SpiderEye.Example.Spa.csproj
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.