mirror of https://github.com/infosecn1nja/C3.git
9 lines
139 B
Batchfile
9 lines
139 B
Batchfile
|
@echo off
|
||
|
cd WebController
|
||
|
if "%1"=="" (
|
||
|
set tmp="http://localhost:52935"
|
||
|
) else (
|
||
|
set tmp=%1
|
||
|
)
|
||
|
dotnet C3WebController.dll --urls %tmp%
|