Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
d8fd8db0
Commit
d8fd8db0
authored
Sep 22, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实体
parent
7707f841
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
500 additions
and
4 deletions
+500
-4
RB_Menu.cs
Edu.Model/Entity/System/RB_Menu.cs
+0
-2
RB_Role.cs
Edu.Model/Entity/System/RB_Role.cs
+59
-0
RB_Menu_ViewModel.cs
Edu.Model/ViewModel/System/RB_Menu_ViewModel.cs
+2
-1
RB_Role_ViewModel.cs
Edu.Model/ViewModel/System/RB_Role_ViewModel.cs
+13
-0
Edu.Module.System.csproj
Edu.Module.System/Edu.Module.System.csproj
+14
-0
MenuModule.cs
Edu.Module.System/MenuModule.cs
+100
-0
RoleModule.cs
Edu.Module.System/RoleModule.cs
+94
-0
RB_MenuRepository.cs
Edu.Repository/System/RB_MenuRepository.cs
+114
-0
RB_RoleRepository.cs
Edu.Repository/System/RB_RoleRepository.cs
+96
-0
education.sln
education.sln
+8
-1
No files found.
Edu.Model/Entity/System/RB_Menu.cs
View file @
d8fd8db0
using
Edu.Common.Enum
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.System
...
...
Edu.Model/Entity/System/RB_Role.cs
0 → 100644
View file @
d8fd8db0
using
Edu.Common.Enum
;
using
System
;
using
VT.FW.DB
;
namespace
Edu.Model.Entity.System
{
/// <summary>
/// 系统角色实体类
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Role
{
/// <summary>
/// 角色编号
/// </summary>
public
int
RoleId
{
get
;
set
;
}
/// <summary>
/// 角色名称
/// </summary>
public
string
RoleName
{
get
;
set
;
}
/// <summary>
/// 备注/描述
/// </summary>
public
string
RoleIntro
{
get
;
set
;
}
/// <summary>
/// 角色权限
/// </summary>
public
string
RoleAuth
{
get
;
set
;
}
/// <summary>
/// 状态(0-正常,1-删除)
/// </summary>
public
DateStateEnum
Status
{
get
;
set
;
}
/// <summary>
/// 创建时间
/// </summary>
public
DateTime
CreateDate
{
get
;
set
;
}
/// <summary>
/// 创建人
/// </summary>
public
int
CreateBy
{
get
;
set
;
}
/// <summary>
/// 集团编号
/// </summary>
public
int
Group_Id
{
get
;
set
;
}
/// <summary>
/// 学校Id
/// </summary>
public
int
School_Id
{
get
;
set
;
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/System/RB_Menu_ViewModel.cs
View file @
d8fd8db0
...
...
@@ -9,5 +9,6 @@ namespace Edu.Model.ViewModel.System
/// </summary>
public
class
RB_Menu_ViewModel
:
Model
.
Entity
.
System
.
RB_Menu
{
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/System/RB_Role_ViewModel.cs
0 → 100644
View file @
d8fd8db0
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Edu.Model.ViewModel.System
{
/// <summary>
/// 系统角色视图实体类
/// </summary>
public
class
RB_Role_ViewModel
:
Model
.
Entity
.
System
.
RB_Role
{
}
}
Edu.Module.System/Edu.Module.System.csproj
0 → 100644
View file @
d8fd8db0
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Edu.Aop\Edu.Aop.csproj" />
<ProjectReference Include="..\Edu.Common\Edu.Common.csproj" />
<ProjectReference Include="..\Edu.Model\Edu.Model.csproj" />
<ProjectReference Include="..\Edu.Repository\Edu.Repository.csproj" />
</ItemGroup>
</Project>
Edu.Module.System/MenuModule.cs
0 → 100644
View file @
d8fd8db0
using
Edu.Model.ViewModel.System
;
using
Edu.Repository.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
VT.FW.DB
;
namespace
Edu.Module.System
{
/// <summary>
/// 菜单处理类
/// </summary>
public
class
MenuModule
{
/// <summary>
/// 系统菜单仓储层对象
/// </summary>
private
readonly
RB_MenuRepository
menuRepository
=
new
RB_MenuRepository
();
/// <summary>
/// 获取菜单列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Menu_ViewModel
>
GetMenuListModule
(
RB_Menu_ViewModel
query
)
{
return
menuRepository
.
GetMenuListRepository
(
query
);
}
/// <summary>
/// 获取菜单分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Menu_ViewModel
>
GetMenuPageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Menu_ViewModel
query
)
{
return
menuRepository
.
GetMenuPageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
}
/// <summary>
/// 新增修改菜单
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
virtual
bool
SetMenuModule
(
RB_Menu_ViewModel
model
)
{
bool
flag
;
if
(
model
.
MenuId
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Menu_ViewModel
.
MenuName
),
model
.
MenuName
.
Trim
()
},
{
nameof
(
RB_Menu_ViewModel
.
ParentId
),
model
.
ParentId
},
{
nameof
(
RB_Menu_ViewModel
.
MenuUrl
),
model
.
MenuUrl
},
{
nameof
(
RB_Menu_ViewModel
.
MenuIcon
),
model
.
MenuIcon
},
{
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
model
.
MenuLevel
},
{
nameof
(
RB_Menu_ViewModel
.
MenuType
),
model
.
MenuType
},
{
nameof
(
RB_Menu_ViewModel
.
SortNum
),
model
.
SortNum
},
};
flag
=
menuRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Menu_ViewModel
.
MenuId
),
model
.
MenuId
));
}
else
{
var
newId
=
menuRepository
.
Insert
(
model
);
model
.
MenuId
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 根据菜单编号获取菜单实体
/// </summary>
/// <param name="MenuId"></param>
/// <returns></returns>
public
RB_Menu_ViewModel
GetMenuModule
(
object
MenuId
)
{
return
menuRepository
.
GetEntity
<
RB_Menu_ViewModel
>(
MenuId
);
}
/// <summary>
/// 更新菜单状态
/// </summary>
/// <param name="MenuId"></param>
/// <param name="Status"></param>
/// <returns></returns>
public
bool
SetMenuStatusModule
(
int
MenuId
,
int
Status
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Menu_ViewModel
.
Status
),
Status
},
};
bool
flag
=
menuRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Menu_ViewModel
.
MenuId
),
MenuId
));
return
flag
;
}
}
}
Edu.Module.System/RoleModule.cs
0 → 100644
View file @
d8fd8db0
using
Edu.Common.Enum
;
using
Edu.Model.ViewModel.System
;
using
Edu.Repository.System
;
using
System.Collections.Generic
;
using
VT.FW.DB
;
namespace
Edu.Module.System
{
/// <summary>
/// 角色处理类
/// </summary>
public
class
RoleModule
{
/// <summary>
/// 角色仓储层对象
/// </summary>
private
readonly
RB_RoleRepository
roleRepository
=
new
RB_RoleRepository
();
/// <summary>
/// 获取角色列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Role_ViewModel
>
GetRoleListModule
(
RB_Role_ViewModel
query
)
{
return
roleRepository
.
GetRoleListRepository
(
query
);
}
/// <summary>
/// 获取角色分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Role_ViewModel
>
GetRolePageListModule
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Role_ViewModel
query
)
{
return
roleRepository
.
GetRolePageListRepository
(
pageIndex
,
pageSize
,
out
rowsCount
,
query
);
}
/// <summary>
/// 新增修改角色
/// </summary>
/// <param name="model"></param>
/// <returns></returns>
public
bool
SetRoleModule
(
RB_Role_ViewModel
model
)
{
bool
flag
;
if
(
model
.
RoleId
>
0
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Role_ViewModel
.
RoleName
),
model
.
RoleName
.
Trim
()
},
{
nameof
(
RB_Role_ViewModel
.
RoleIntro
),
model
.
RoleIntro
},
{
nameof
(
RB_Role_ViewModel
.
RoleAuth
),
model
.
RoleAuth
},
};
flag
=
roleRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Role_ViewModel
.
RoleId
),
model
.
RoleId
));
}
else
{
var
newId
=
roleRepository
.
Insert
(
model
);
model
.
RoleId
=
newId
;
flag
=
newId
>
0
;
}
return
flag
;
}
/// <summary>
/// 获取角色实体
/// </summary>
/// <param name="RoleId"></param>
/// <returns></returns>
public
RB_Role_ViewModel
GetRoleModule
(
object
RoleId
)
{
return
roleRepository
.
GetEntity
<
RB_Role_ViewModel
>(
RoleId
);
}
/// <summary>
/// 删除角色
/// </summary>
/// <param name="RoleId"></param>
/// <returns></returns>
public
bool
RemoveRoleModule
(
object
RoleId
)
{
Dictionary
<
string
,
object
>
fileds
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Role_ViewModel
.
Status
),(
int
)
DateStateEnum
.
Delete
},
};
bool
flag
=
roleRepository
.
Update
(
fileds
,
new
WhereHelper
(
nameof
(
RB_Role_ViewModel
.
RoleId
),
RoleId
));
return
flag
;
}
}
}
\ No newline at end of file
Edu.Repository/System/RB_MenuRepository.cs
0 → 100644
View file @
d8fd8db0
using
Edu.Common.Enum
;
using
Edu.Model.ViewModel.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
VT.FW.DB.Dapper
;
namespace
Edu.Repository.System
{
public
class
RB_MenuRepository
:
BaseRepository
<
Model
.
Entity
.
System
.
RB_Menu
>
{
/// <summary>
/// 获取菜单列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Menu_ViewModel
>
GetMenuListRepository
(
RB_Menu_ViewModel
query
)
{
var
parameters
=
new
DynamicParameters
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT *
FROM rb_menu
WHERE 1=1
"
);
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
MenuName
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @MenuName "
,
nameof
(
RB_Menu_ViewModel
.
MenuName
));
parameters
.
Add
(
"MenuName"
,
"%"
+
query
.
MenuName
.
Trim
()
+
"%"
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
MenuUrl
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @MenuUrl "
,
nameof
(
RB_Menu_ViewModel
.
MenuUrl
));
parameters
.
Add
(
"MenuUrl"
,
"%"
+
query
.
MenuUrl
.
Trim
()
+
"%"
);
}
if
(
query
.
MenuLevel
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
query
.
MenuLevel
);
}
if
(
query
.
MenuId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
query
.
MenuId
);
}
if
(
query
.
ParentId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
ParentId
),
query
.
ParentId
);
}
if
(
query
.
MenuType
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuType
),
query
.
MenuType
);
}
}
return
Get
<
RB_Menu_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取菜单分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Menu_ViewModel
>
GetMenuPageListRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Menu_ViewModel
query
)
{
var
parameters
=
new
DynamicParameters
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT *
FROM rb_menu
WHERE 1=1
"
);
if
(
query
!=
null
)
{
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
MenuName
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @MenuName "
,
nameof
(
RB_Menu_ViewModel
.
MenuName
));
parameters
.
Add
(
"MenuName"
,
"%"
+
query
.
MenuName
.
Trim
()
+
"%"
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
MenuUrl
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @MenuUrl "
,
nameof
(
RB_Menu_ViewModel
.
MenuUrl
));
parameters
.
Add
(
"MenuUrl"
,
"%"
+
query
.
MenuUrl
.
Trim
()
+
"%"
);
}
if
(
query
.
MenuLevel
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
query
.
MenuLevel
);
}
if
(
query
.
MenuId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuLevel
),
query
.
MenuId
);
}
if
(
query
.
ParentId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
ParentId
),
query
.
ParentId
);
}
if
(
query
.
MenuType
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
MenuType
),
query
.
MenuType
);
}
if
((
int
)
query
.
Status
>
-
1
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Menu_ViewModel
.
Status
),
(
int
)
query
.
Status
);
}
}
return
GetPage
<
RB_Menu_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
}
\ No newline at end of file
Edu.Repository/System/RB_RoleRepository.cs
0 → 100644
View file @
d8fd8db0
using
Edu.Common.Enum
;
using
Edu.Model.ViewModel.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
using
System.Text
;
using
VT.FW.DB.Dapper
;
namespace
Edu.Repository.System
{
/// <summary>
/// 系统角色仓储类
/// </summary>
public
class
RB_RoleRepository
:
BaseRepository
<
Model
.
Entity
.
System
.
RB_Role
>
{
/// <summary>
/// 获取角色列表
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Role_ViewModel
>
GetRoleListRepository
(
RB_Role_ViewModel
query
)
{
var
parameters
=
new
DynamicParameters
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT *
FROM rb_role
WHERE 1=1
"
);
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
Group_Id
),
query
.
Group_Id
);
}
if
(
query
.
School_Id
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
School_Id
),
query
.
School_Id
);
}
if
(
query
.
RoleId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
RoleId
),
query
.
RoleId
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
RoleName
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @RoleName "
,
nameof
(
RB_Role_ViewModel
.
RoleName
));
parameters
.
Add
(
"RoleName"
,
"%"
+
query
.
RoleName
.
Trim
()
+
"%"
);
}
}
return
Get
<
RB_Role_ViewModel
>(
builder
.
ToString
(),
parameters
).
ToList
();
}
/// <summary>
/// 获取角色分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public
List
<
RB_Role_ViewModel
>
GetRolePageListRepository
(
int
pageIndex
,
int
pageSize
,
out
long
rowsCount
,
RB_Role_ViewModel
query
)
{
var
parameters
=
new
DynamicParameters
();
StringBuilder
builder
=
new
StringBuilder
();
builder
.
AppendFormat
(
@"
SELECT *
FROM rb_role
WHERE 1=1
"
);
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
Status
),
(
int
)
DateStateEnum
.
Normal
);
if
(
query
!=
null
)
{
if
(
query
.
Group_Id
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
Group_Id
),
query
.
Group_Id
);
}
if
(
query
.
School_Id
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
School_Id
),
query
.
School_Id
);
}
if
(
query
.
RoleId
>
0
)
{
builder
.
AppendFormat
(
" AND {0}={1} "
,
nameof
(
RB_Role_ViewModel
.
RoleId
),
query
.
RoleId
);
}
if
(!
string
.
IsNullOrWhiteSpace
(
query
.
RoleName
))
{
builder
.
AppendFormat
(
" AND {0} LIKE @RoleName "
,
nameof
(
RB_Role_ViewModel
.
RoleName
));
parameters
.
Add
(
"RoleName"
,
"%"
+
query
.
RoleName
.
Trim
()
+
"%"
);
}
}
return
GetPage
<
RB_Role_ViewModel
>(
pageIndex
,
pageSize
,
out
rowsCount
,
builder
.
ToString
(),
parameters
).
ToList
();
}
}
}
education.sln
View file @
d8fd8db0
...
...
@@ -21,7 +21,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Module", "Module", "{7AC0A4
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.Module.User", "Edu.Module.User\Edu.Module.User.csproj", "{1B9D7825-26A9-4F81-B04C-2261CB1F954A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.WebApi", "Edu.WebApi\Edu.WebApi.csproj", "{878A03A7-2571-4322-A55E-39A5105296A9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Edu.WebApi", "Edu.WebApi\Edu.WebApi.csproj", "{878A03A7-2571-4322-A55E-39A5105296A9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Edu.Module.System", "Edu.Module.System\Edu.Module.System.csproj", "{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
...
@@ -57,6 +59,10 @@ Global
{878A03A7-2571-4322-A55E-39A5105296A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{878A03A7-2571-4322-A55E-39A5105296A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{878A03A7-2571-4322-A55E-39A5105296A9}.Release|Any CPU.Build.0 = Release|Any CPU
{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
@@ -68,6 +74,7 @@ Global
{414497FE-79E2-493F-A7B4-97BEDA956472} = {94CECEE0-E28C-424A-9C8E-8AAE9E4967BD}
{539496B1-1377-46AD-A1AB-4473818D6A79} = {94CECEE0-E28C-424A-9C8E-8AAE9E4967BD}
{1B9D7825-26A9-4F81-B04C-2261CB1F954A} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
{CBA4F637-BB41-4281-BCE8-4BB9BBA3193F} = {7AC0A4EC-3215-4FF2-96DC-DE8325ED6915}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8763B446-FAB1-46BF-9743-F2628533241B}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment