diff --git a/WebfrontCore/Views/Console/_Response.cshtml b/WebfrontCore/Views/Console/_Response.cshtml
index c3a94b4dc..cd7c7e649 100644
--- a/WebfrontCore/Views/Console/_Response.cshtml
+++ b/WebfrontCore/Views/Console/_Response.cshtml
@@ -1,4 +1,4 @@
-@model List
+@model List
@{
Layout = null;
}
diff --git a/WebfrontCore/Views/Penalty/_Penalty.cshtml b/WebfrontCore/Views/Penalty/_Penalty.cshtml
index 213ba3ce3..d429999a8 100644
--- a/WebfrontCore/Views/Penalty/_Penalty.cshtml
+++ b/WebfrontCore/Views/Penalty/_Penalty.cshtml
@@ -2,7 +2,7 @@
Layout = null;
}
-@model SharedLibrary.Dtos.PenaltyInfo
+@model SharedLibraryCore.Dtos.PenaltyInfo
Name |
diff --git a/WebfrontCore/Views/Server/_ClientActivity.cshtml b/WebfrontCore/Views/Server/_ClientActivity.cshtml
index a0c3bf811..464d92847 100644
--- a/WebfrontCore/Views/Server/_ClientActivity.cshtml
+++ b/WebfrontCore/Views/Server/_ClientActivity.cshtml
@@ -1,4 +1,4 @@
-@model SharedLibrary.Dtos.ServerInfo
+@model SharedLibraryCore.Dtos.ServerInfo
@{
Layout = null;
diff --git a/WebfrontCore/Views/Server/_Server.cshtml b/WebfrontCore/Views/Server/_Server.cshtml
index 0d0e373ae..1a2ea4351 100644
--- a/WebfrontCore/Views/Server/_Server.cshtml
+++ b/WebfrontCore/Views/Server/_Server.cshtml
@@ -1,5 +1,5 @@
-@model SharedLibrary.Dtos.ServerInfo
+@model SharedLibraryCore.Dtos.ServerInfo
@{
Layout = null;
diff --git a/WebfrontCore/Views/Shared/Components/PenaltyList/_List.cshtml b/WebfrontCore/Views/Shared/Components/PenaltyList/_List.cshtml
index 59b1837e5..70b50c4d3 100644
--- a/WebfrontCore/Views/Shared/Components/PenaltyList/_List.cshtml
+++ b/WebfrontCore/Views/Shared/Components/PenaltyList/_List.cshtml
@@ -1,7 +1,7 @@
@{
Layout = null;
}
-@model List
+@model List
@{
foreach (var penalty in Model)
diff --git a/WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml b/WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml
index 5360684aa..e31f16f35 100644
--- a/WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml
+++ b/WebfrontCore/Views/Shared/Components/ServerList/_List.cshtml
@@ -1,7 +1,7 @@
@{
Layout = null;
}
-@model IEnumerable
+@model IEnumerable
@{
foreach (var s in Model)
diff --git a/WebfrontCore/WebfrontCore.csproj b/WebfrontCore/WebfrontCore.csproj
index 1da35da94..1f9267d2e 100644
--- a/WebfrontCore/WebfrontCore.csproj
+++ b/WebfrontCore/WebfrontCore.csproj
@@ -1,32 +1,19 @@
-
+
- net452
- true
- IW4MAdmin
- Exe
+ netcoreapp2.0
+ 2.6
RaidMax.IW4MAdmin.WebfrontCore
- AnyCPU;x86
- wwwroot\favicon.ico
- false
- 1.6.0
+ 2.0.0
RaidMax
- ForeverNone
+ Forever None
+ IW4MAdmin
+ IW4MAdmin is a complete server administration tool for IW4x and most Call of Duty® dedicated server
2018
https://github.com/RaidMax/IW4M-Admin/blob/master/LICENSE
- Complete administration tool designed for IW4x and compatible with most Call Of Duty® dedicated servers
- https://raidmax.org/IW4Madmin/
- https://raidmax.org/IW4Madmin/img/iw4adminicon-3.png
+ https://raidmax.org/IW4MAdmin
https://github.com/RaidMax/IW4M-Admin
- en
-
-
-
- x86
-
-
-
- bin\x86\Debug\
+ https://raidmax.org/IW4MAdmin/img/iw4adminicon-3.png
@@ -36,39 +23,8 @@
-
- PreserveNewest
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -78,9 +34,11 @@
-
- true
-
+
+
+
+
+
@@ -92,16 +50,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/WebfrontCore2/BuildScripts/PostBuild.bat b/WebfrontCore2/BuildScripts/PostBuild.bat
deleted file mode 100644
index 2009b3abc..000000000
--- a/WebfrontCore2/BuildScripts/PostBuild.bat
+++ /dev/null
@@ -1,16 +0,0 @@
-set SolutionDir=%1
-set ProjectDir=%2
-set TargetDir=%3
-
-if not exist "%TargetDir%x86" (
- echo "Copying SQLCe binaries"
- md "%TargetDir%x86"
- xcopy /y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%TargetDir%x86\"
-)
-
-if not exist "%TargetDir%Plugins" (
- echo "Making plugin dir"
- md "%TargetDir%Plugins"
-)
-
-xcopy /y "%SolutionDir%Build\Plugins" "%TargetDir%Plugins\"
\ No newline at end of file
diff --git a/WebfrontCore2/BuildScripts/PostPublish.bat b/WebfrontCore2/BuildScripts/PostPublish.bat
deleted file mode 100644
index e5486b1ab..000000000
--- a/WebfrontCore2/BuildScripts/PostPublish.bat
+++ /dev/null
@@ -1,9 +0,0 @@
-set SolutionDir=%1
-set ProjectDir=%2
-set TargetDir=%3
-
-if "TargetDir" == "*Undefined*" (
- echo "Copying extra files to publish dir"
- xcopy /Y "%SolutionDir%BUILD\Plugins" "%SolutionDir%Publish\Plugins\"
- xcopy /Y "%SolutionDir%SharedLibrary\LibSQLCe\x86" "%SolutionDir%Publish\x86\"
-)
\ No newline at end of file
diff --git a/WebfrontCore2/BuildScripts/PreBuild.bat b/WebfrontCore2/BuildScripts/PreBuild.bat
deleted file mode 100644
index fbde9f9b5..000000000
--- a/WebfrontCore2/BuildScripts/PreBuild.bat
+++ /dev/null
@@ -1,3 +0,0 @@
-set SolutionDir=%1
-set ProjectDir=%2
-set TargetDir=%3