Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e36c2ae62 | |||
| 89d212ebb2 | |||
| a1fd9ab2d7 |
@@ -1,8 +1,8 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<Version>1.0.12</Version>
|
<Version>1.0.0</Version>
|
||||||
<Authors>SZUAbsolventenverein</Authors>
|
<Authors>SZUAbsolventenverein</Authors>
|
||||||
<Company>SZUAbsolventenverein</Company>
|
<Company>SZUAbsolventenverein</Company>
|
||||||
<Description>[Description]</Description>
|
<Description>[Description]</Description>
|
||||||
@@ -13,14 +13,14 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.2" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="9.0.2" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.1" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Localization" Version="9.0.2" />
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Oqtane.Client"><HintPath>..\..\oqtane.framework\Oqtane.Server\bin\Debug\net9.0\Oqtane.Client.dll</HintPath></Reference>
|
<Reference Include="Oqtane.Client"><HintPath>..\..\oqtane.framework\Oqtane.Server\bin\Debug\net10.0\Oqtane.Client.dll</HintPath></Reference>
|
||||||
<Reference Include="Oqtane.Shared"><HintPath>..\..\oqtane.framework\Oqtane.Server\bin\Debug\net9.0\Oqtane.Shared.dll</HintPath></Reference>
|
<Reference Include="Oqtane.Shared"><HintPath>..\..\oqtane.framework\Oqtane.Server\bin\Debug\net10.0\Oqtane.Shared.dll</HintPath></Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ namespace SZUAbsolventenverein.Theme.Website
|
|||||||
public Oqtane.Models.Theme Theme => new Oqtane.Models.Theme
|
public Oqtane.Models.Theme Theme => new Oqtane.Models.Theme
|
||||||
{
|
{
|
||||||
Name = "SZUAbsolventenverein Website",
|
Name = "SZUAbsolventenverein Website",
|
||||||
Version = "1.0.12",
|
Version = "1.0.17",
|
||||||
PackageName = "SZUAbsolventenverein.Theme.Website",
|
PackageName = "SZUAbsolventenverein.Theme.Website",
|
||||||
ThemeSettingsType = "SZUAbsolventenverein.Theme.Website.ThemeSettings, SZUAbsolventenverein.Theme.Website.Client.Oqtane",
|
ThemeSettingsType = "SZUAbsolventenverein.Theme.Website.ThemeSettings, SZUAbsolventenverein.Theme.Website.Client.Oqtane",
|
||||||
ContainerSettingsType = "SZUAbsolventenverein.Theme.Website.ContainerSettings, SZUAbsolventenverein.Theme.Website.Client.Oqtane",
|
ContainerSettingsType = "SZUAbsolventenverein.Theme.Website.ContainerSettings, SZUAbsolventenverein.Theme.Website.Client.Oqtane",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@namespace SZUAbsolventenverein.Theme.Website
|
@namespace SZUAbsolventenverein.Theme.Website
|
||||||
@inherits ThemeBase
|
@inherits ThemeBase
|
||||||
@inject NavigationManager NavigationManager
|
@inject NavigationManager NavigationManager
|
||||||
@inject ISettingService SettingService
|
@inject ISettingService SettingService
|
||||||
@@ -33,37 +33,59 @@
|
|||||||
"Search", "Privacy", "Terms", "Not Found", "NotFound"
|
"Search", "Privacy", "Terms", "Not Found", "NotFound"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Aktuelle Seite erkennen
|
||||||
|
var currentPath = new Uri(NavigationManager.Uri).AbsolutePath.Trim('/').ToLower();
|
||||||
|
|
||||||
@foreach (var page in PageState.Pages
|
@foreach (var page in PageState.Pages
|
||||||
.Where(p => p.ParentId == null
|
.Where(p => p.ParentId == null
|
||||||
&& p.IsNavigation
|
&& p.IsNavigation
|
||||||
&& !p.IsDeleted
|
&& !p.IsDeleted
|
||||||
&& !hiddenNames.Contains(p.Name)))
|
&& !hiddenNames.Contains(p.Name)))
|
||||||
{
|
{
|
||||||
<div class="nav-item">
|
var pagePath = (page.Path ?? "").Trim('/').ToLower();
|
||||||
<a class="nav-link text-white" href="@(@page.Path)">
|
var isActive = currentPath == pagePath;
|
||||||
@(@page.Name)
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
var children = PageState.Pages
|
var children = PageState.Pages
|
||||||
.Where(c => c.ParentId == page.PageId
|
.Where(c => c.ParentId == page.PageId
|
||||||
&& c.IsNavigation
|
&& c.IsNavigation
|
||||||
&& !c.IsDeleted
|
&& !c.IsDeleted
|
||||||
&& !hiddenNames.Contains(c.Name));
|
&& !hiddenNames.Contains(c.Name));
|
||||||
|
var hasChildren = children.Any();
|
||||||
|
// Prüfe ob ein Kind aktiv ist
|
||||||
|
var isChildActive = hasChildren && children.Any(c => currentPath == (c.Path ?? "").Trim('/').ToLower());
|
||||||
|
var activeClass = (isActive || isChildActive) ? "nav-link text-white active" : "nav-link text-white";
|
||||||
|
var wrapperClass = hasChildren ? "nav-item nav-item-dropdown" : "nav-item";
|
||||||
|
|
||||||
if (children.Any())
|
<div class="@wrapperClass">
|
||||||
{
|
<div class="nav-link-row">
|
||||||
<div class="app-submenu">
|
<a class="@activeClass" href="@(@page.Path)">
|
||||||
@foreach (var child in children)
|
@(@page.Name)
|
||||||
|
</a>
|
||||||
|
@if (hasChildren)
|
||||||
{
|
{
|
||||||
<div class="nav-item">
|
<button class="dropdown-toggle-btn" onclick="var sub=this.closest('.nav-item-dropdown').querySelector('.app-submenu'); sub.classList.toggle('mobile-open'); this.querySelector('.dropdown-arrow').classList.toggle('open');">
|
||||||
<a class="nav-link text-white" href="@child.Path">
|
<span class="dropdown-arrow">▾</span>
|
||||||
@child.Name
|
</button>
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
|
||||||
|
@if (hasChildren)
|
||||||
|
{
|
||||||
|
<div class="app-submenu">
|
||||||
|
@foreach (var child in children)
|
||||||
|
{
|
||||||
|
var childPath = (child.Path ?? "").Trim('/').ToLower();
|
||||||
|
var isThisChildActive = currentPath == childPath;
|
||||||
|
var childActiveClass = isThisChildActive ? "nav-link text-white active" : "nav-link text-white";
|
||||||
|
|
||||||
|
<div class="nav-item">
|
||||||
|
<a class="@childActiveClass" href="@child.Path">
|
||||||
|
@child.Name
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
@@ -174,7 +196,6 @@
|
|||||||
|
|
||||||
public override string Panes => PaneNames.Admin + ",Top Full Width,Top 100%,Left 50%,Right 50%,Left 33%,Center 33%,Right 33%,Left Outer 25%,Left Inner 25%,Right Inner 25%,Right Outer 25%,Left 25%,Center 50%,Right 25%,Left Sidebar 66%,Right Sidebar 33%,Left Sidebar 33%,Right Sidebar 66%,Bottom 100%,Bottom Full Width";
|
public override string Panes => PaneNames.Admin + ",Top Full Width,Top 100%,Left 50%,Right 50%,Left 33%,Center 33%,Right 33%,Left Outer 25%,Left Inner 25%,Right Inner 25%,Right Outer 25%,Left 25%,Center 50%,Right 25%,Left Sidebar 66%,Right Sidebar 33%,Left Sidebar 33%,Right Sidebar 66%,Bottom 100%,Bottom Full Width";
|
||||||
|
|
||||||
private bool _showDropdown = false;
|
|
||||||
private bool _login = true;
|
private bool _login = true;
|
||||||
private bool _register = true;
|
private bool _register = true;
|
||||||
private bool _navOpen = false;
|
private bool _navOpen = false;
|
||||||
|
|||||||
@@ -1,9 +1,21 @@
|
|||||||
/* ===========================
|
/* ===========================
|
||||||
Standard Layout
|
Standard Layout
|
||||||
=========================== */
|
=========================== */
|
||||||
|
|
||||||
body {}
|
body {}
|
||||||
|
|
||||||
|
/* Oqtane Control Panel / Bootstrap Overlays über dem Menü anzeigen */
|
||||||
|
.offcanvas,
|
||||||
|
.offcanvas-backdrop,
|
||||||
|
.modal,
|
||||||
|
.modal-backdrop {
|
||||||
|
z-index: 2000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.offcanvas.show {
|
||||||
|
z-index: 2001 !important;
|
||||||
|
}
|
||||||
|
|
||||||
/* Login-Button (Mobile + Desktop) */
|
/* Login-Button (Mobile + Desktop) */
|
||||||
.app-menu-footer .btn-login,
|
.app-menu-footer .btn-login,
|
||||||
.app-menu-footer .login-btn,
|
.app-menu-footer .login-btn,
|
||||||
@@ -159,9 +171,60 @@ body {}
|
|||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Untermenü (Kinder-Seiten) etwas eingerückt */
|
/* Dropdown-Wrapper: relative positioniert für absolutes Dropdown */
|
||||||
|
.nav-item-dropdown {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Link + Toggle-Button nebeneinander */
|
||||||
|
.nav-link-row {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Toggle-Button für Mobile */
|
||||||
|
.dropdown-toggle-btn {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 6px 8px;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dropdown-Pfeil */
|
||||||
|
.dropdown-arrow {
|
||||||
|
font-size: 0.8em;
|
||||||
|
opacity: 0.7;
|
||||||
|
display: inline-block;
|
||||||
|
transition: transform 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Pfeil dreht sich wenn offen */
|
||||||
|
.dropdown-arrow.open {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Untermenü: standardmäßig versteckt */
|
||||||
.app-submenu {
|
.app-submenu {
|
||||||
margin-left: 1rem;
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
min-width: 180px;
|
||||||
|
background-color: #9a9999;
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 0.5rem 0;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
|
||||||
|
z-index: 2000;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Dropdown bei Hover öffnen */
|
||||||
|
.nav-item-dropdown:hover > .app-submenu {
|
||||||
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Nav-Items */
|
/* Nav-Items */
|
||||||
@@ -169,21 +232,42 @@ body {}
|
|||||||
padding-bottom: 0.25rem;
|
padding-bottom: 0.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Sub-Items im Dropdown: volle Breite */
|
||||||
|
.app-submenu .nav-item {
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-submenu .nav-link {
|
||||||
|
padding: 6px 16px;
|
||||||
|
border-radius: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-submenu .nav-link:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
/* Hover-/Active-Style für Links */
|
/* Hover-/Active-Style für Links */
|
||||||
.app-menu .nav-link {
|
.app-menu .nav-link {
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
transition: background-color 0.2s ease, color 0.2s ease;
|
transition: background-color 0.2s ease, color 0.2s ease, font-weight 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hover: dunkler Hintergrund */
|
||||||
.app-menu .nav-link:hover {
|
.app-menu .nav-link:hover {
|
||||||
background-color: #4a4a4a;
|
background-color: rgba(0, 0, 0, 0.35);
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Aktive Seite: dunkel + fett */
|
||||||
.app-menu .nav-link.active {
|
.app-menu .nav-link.active {
|
||||||
background-color: #3b3b3b;
|
background-color: rgba(0, 0, 0, 0.45);
|
||||||
color: #ffffff !important;
|
color: #ffffff !important;
|
||||||
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -328,4 +412,22 @@ body {}
|
|||||||
font-size: clamp(12px, 3.5vw, 15px);
|
font-size: clamp(12px, 3.5vw, 15px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Mobile: Dropdown standardmäßig versteckt */
|
||||||
|
.app-submenu {
|
||||||
|
position: static !important;
|
||||||
|
min-width: unset !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
background-color: transparent !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
padding-left: 1rem !important;
|
||||||
|
border-radius: 0 !important;
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile: Dropdown nur öffnen wenn angeklickt */
|
||||||
|
.app-submenu.mobile-open {
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
<AccelerateBuildsInVisualStudio>false</AccelerateBuildsInVisualStudio>
|
<AccelerateBuildsInVisualStudio>false</AccelerateBuildsInVisualStudio>
|
||||||
<PackageId>SZUAbsolventenverein.Theme.Website</PackageId>
|
<PackageId>SZUAbsolventenverein.Theme.Website</PackageId>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>SZUAbsolventenverein.Theme.Website</id>
|
<id>SZUAbsolventenverein.Theme.Website</id>
|
||||||
<version>1.0.12</version>
|
<version>1.0.17</version>
|
||||||
<authors>SZUAbsolventenverein</authors>
|
<authors>SZUAbsolventenverein</authors>
|
||||||
<owners>SZUAbsolventenverein</owners>
|
<owners>SZUAbsolventenverein</owners>
|
||||||
<title>Website</title>
|
<title>Website</title>
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
<releaseNotes></releaseNotes>
|
<releaseNotes></releaseNotes>
|
||||||
<summary></summary>
|
<summary></summary>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency id="Oqtane.Framework" version="6.1.1" />
|
<dependency id="Oqtane.Framework" version="10.0.3" />
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
|
|||||||
10
Package/debug.sh
Normal file → Executable file
10
Package/debug.sh
Normal file → Executable file
@@ -1,8 +1,10 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
set -x
|
||||||
TargetFramework=$1
|
TargetFramework=$1
|
||||||
ProjectName=$2
|
ProjectName=$2
|
||||||
|
|
||||||
cp -f "../Client/bin/Debug/$TargetFramework/$ProjectName$.Client.Oqtane.dll" "../../oqtane.framework/Oqtane.Server/bin/Debug/$TargetFramework/"
|
whoami
|
||||||
cp -f "../Client/bin/Debug/$TargetFramework/$ProjectName$.Client.Oqtane.pdb" "../../oqtane.framework/Oqtane.Server/bin/Debug/$TargetFramework/"
|
|
||||||
cp -rf "../Server/wwwroot/"* "../../oqtane.framework/Oqtane.Server/wwwroot/"
|
cp -f "../Client/bin/Debug/$TargetFramework/$ProjectName.Client.Oqtane.dll" "../../oqtane.framework/Oqtane.Server/bin/Debug/$TargetFramework/"
|
||||||
|
cp -f "../Client/bin/Debug/$TargetFramework/$ProjectName.Client.Oqtane.pdb" "../../oqtane.framework/Oqtane.Server/bin/Debug/$TargetFramework/"
|
||||||
|
cp -rf "../Client/wwwroot/"* "../../oqtane.framework/Oqtane.Server/wwwroot/"
|
||||||
@@ -2,6 +2,7 @@ TargetFramework=$1
|
|||||||
ProjectName=$2
|
ProjectName=$2
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
|
|
||||||
rm -f *.nupkg
|
|
||||||
dotnet build "../Client/SZUAbsolventenverein.Theme.Website.Client.csproj" -c Release
|
find . -name *.nupkg -delete
|
||||||
dotnet pack "${ProjectName}.Package.csproj" -p:NuspecFile="${ProjectName}.nuspec" -p:NuspecProperties="targetframework=${TargetFramework};projectname=${ProjectName}" --no-build -o .
|
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName}"
|
||||||
|
cp -f *.nupkg ../../oqtane.framework/Oqtane.Server/Packages/
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
||||||
# Visual Studio Version 17
|
|
||||||
VisualStudioVersion = 17.13.35825.156 d17.13
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Oqtane.Server", "..\oqtane.framework\Oqtane.Server\Oqtane.Server.csproj", "{3AB6FCC9-EFEB-4C0E-A2CF-8103914C5196}"
|
|
||||||
EndProject
|
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SZUAbsolventenverein.Theme.Website.Client", "Client\SZUAbsolventenverein.Theme.Website.Client.csproj", "{AA8E58A1-CD09-4208-BF66-A8BB341FD669}"
|
|
||||||
EndProject
|
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SZUAbsolventenverein.Theme.Website.Package", "Package\SZUAbsolventenverein.Theme.Website.Package.csproj", "{C5CE512D-CBB7-4545-AF0F-9B6591A0C3A7}"
|
|
||||||
EndProject
|
|
||||||
Global
|
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
||||||
Debug|Any CPU = Debug|Any CPU
|
|
||||||
Release|Any CPU = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
||||||
{3AB6FCC9-EFEB-4C0E-A2CF-8103914C5196}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{3AB6FCC9-EFEB-4C0E-A2CF-8103914C5196}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{AA8E58A1-CD09-4208-BF66-A8BB341FD669}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{AA8E58A1-CD09-4208-BF66-A8BB341FD669}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{AA8E58A1-CD09-4208-BF66-A8BB341FD669}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{AA8E58A1-CD09-4208-BF66-A8BB341FD669}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{C5CE512D-CBB7-4545-AF0F-9B6591A0C3A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{C5CE512D-CBB7-4545-AF0F-9B6591A0C3A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{C5CE512D-CBB7-4545-AF0F-9B6591A0C3A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{C5CE512D-CBB7-4545-AF0F-9B6591A0C3A7}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
|
||||||
HideSolutionNode = FALSE
|
|
||||||
EndGlobalSection
|
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
||||||
SolutionGuid = {1D016F15-46FE-4726-8DFD-2E4FD4DC7668}
|
|
||||||
EndGlobalSection
|
|
||||||
EndGlobal
|
|
||||||
7
SZUAbsolventenverein.Theme.Website.slnx
Normal file
7
SZUAbsolventenverein.Theme.Website.slnx
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<Solution>
|
||||||
|
<Project Path="../oqtane.framework/Oqtane.Server/Oqtane.Server.csproj">
|
||||||
|
<Build Project="false" />
|
||||||
|
</Project>
|
||||||
|
<Project Path="Client/SZUAbsolventenverein.Theme.Website.Client.csproj" />
|
||||||
|
<Project Path="Package/SZUAbsolventenverein.Theme.Website.Package.csproj" />
|
||||||
|
</Solution>
|
||||||
Reference in New Issue
Block a user