Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include Xe-project (like in XenCenter) #86

Merged
merged 2 commits into from
Jul 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions XenAdmin.sln
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xva_verify", "xva_verify\xv
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "splash", "splash\splash.vcxproj", "{AFB19C9D-DD63-478B-A4A3-8452CBD0B9AB}"
ProjectSection(ProjectDependencies) = postProject
{727E885D-14BE-40F0-9D0B-3853D44D3984} = {727E885D-14BE-40F0-9D0B-3853D44D3984}
{70BDA4BC-F062-4302-8ACD-A15D8BF31D65} = {70BDA4BC-F062-4302-8ACD-A15D8BF31D65}
EndProjectSection
EndProject
Expand All @@ -38,6 +39,8 @@ Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "installer-xcp-ng", "install
{AFB19C9D-DD63-478B-A4A3-8452CBD0B9AB} = {AFB19C9D-DD63-478B-A4A3-8452CBD0B9AB}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xe", "xe\Xe.csproj", "{727E885D-14BE-40F0-9D0B-3853D44D3984}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -234,6 +237,22 @@ Global
{E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|Win32.Build.0 = Release|x86
{E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|x64.ActiveCfg = Release|x64
{E0BDD733-D6EB-4EAF-B020-ED0F1154CF80}.Release|x64.Build.0 = Release|x64
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Any CPU.Build.0 = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Win32.ActiveCfg = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|Win32.Build.0 = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|x64.ActiveCfg = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Debug|x64.Build.0 = Debug|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Any CPU.ActiveCfg = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Any CPU.Build.0 = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Win32.ActiveCfg = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|Win32.Build.0 = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|x64.ActiveCfg = Release|Any CPU
{727E885D-14BE-40F0-9D0B-3853D44D3984}.Release|x64.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
7 changes: 5 additions & 2 deletions xe/Xe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>..\XenAdmin\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -40,7 +40,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>..\XenAdmin\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand Down Expand Up @@ -78,4 +78,7 @@
<PropertyGroup>
<PostBuildEvent Condition=" '$(Configuration)' == 'Release' ">"mt.exe" -nologo -manifest "$(ProjectDir)$(ProjectName).manifest" -outputresource:"$(TargetDir)..\..\bin\Release\$(TargetFileName)";#1</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent />
</PropertyGroup>
</Project>