Advertisement
napland

electron vs proj

Jan 25th, 2019
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.53 KB | None | 0 0
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  2.   <PropertyGroup>
  3.     <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
  4.     <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  5.     <Name>GitMon</Name>
  6.     <RootNamespace>GitMon</RootNamespace>
  7.     <SaveNodeJsSettingsInProjectFile>True</SaveNodeJsSettingsInProjectFile>
  8.     <NodeExePath>D:\@Documents\My Open Source Repos\GitMon\node_modules\electron\dist\electron.exe</NodeExePath>
  9.     <NodeExeArguments>main.js</NodeExeArguments>
  10.     <JavaScriptTestFramework>ExportRunner</JavaScriptTestFramework>
  11.     <ScriptArguments>--inspect-brk</ScriptArguments>
  12.     <DebuggerPort>5858</DebuggerPort>
  13.     <NodejsPort>
  14.     </NodejsPort>
  15.   </PropertyGroup>
  16.   <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  17.   <PropertyGroup>
  18.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  19.     <SchemaVersion>2.0</SchemaVersion>
  20.     <ProjectGuid>0e3d7742-5973-41e0-8411-97f609c13491</ProjectGuid>
  21.     <ProjectHome>.</ProjectHome>
  22.     <StartupFile>main.js</StartupFile>
  23.     <StartWebBrowser>False</StartWebBrowser>
  24.     <SearchPath>
  25.     </SearchPath>
  26.     <WorkingDirectory>.</WorkingDirectory>
  27.     <OutputPath>.</OutputPath>
  28.     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  29.     <ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
  30.     <StartWebBrowser>True</StartWebBrowser>
  31.   </PropertyGroup>
  32.   <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  33.     <DebugSymbols>true</DebugSymbols>
  34.   </PropertyGroup>
  35.   <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  36.     <DebugSymbols>true</DebugSymbols>
  37.   </PropertyGroup>
  38.   <ItemGroup>
  39.     <Compile Include="main.js" />
  40.     <Compile Include="renderer\badgeHandler.js" />
  41.     <Compile Include="renderer\directoryPickerCaller.js" />
  42.     <Compile Include="renderer\externalLinkHandler.js" />
  43.     <Compile Include="renderer\gitStatusResultDOMHandler.js" />
  44.     <Compile Include="renderer\mainDivSizeHandler.js" />
  45.     <Compile Include="renderer\preloader.js" />
  46.     <Compile Include="renderer\sidenav.js" />
  47.     <Compile Include="renderer\titlebar.js" />
  48.     <Compile Include="renderer\zoomHandler.js" />
  49.     <Compile Include="renderer\_requires.js" />
  50.     <Compile Include="store.js">
  51.       <SubType>Code</SubType>
  52.     </Compile>
  53.     <Content Include="css\colors.css" />
  54.     <Content Include="css\content.css" />
  55.     <Content Include="css\preloader.css" />
  56.     <Content Include="css\scrollbar.css" />
  57.     <Content Include="css\sidenav.css" />
  58.     <Content Include="css\titlebar.css" />
  59.     <Content Include="index.html">
  60.       <SubType>Code</SubType>
  61.     </Content>
  62.     <Content Include="package.json" />
  63.   </ItemGroup>
  64.   <ItemGroup>
  65.     <Folder Include="css\" />
  66.     <Folder Include="renderer\" />
  67.   </ItemGroup>
  68.   <!-- Do not delete the following Import Project.  While this appears to do nothing it is a marker for setting TypeScript properties before our import that depends on them. -->
  69.   <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="False" />
  70.   <Import Project="$(VSToolsPath)\Node.js Tools\Microsoft.NodejsTools.targets" />
  71. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement