Commit 4641d4cd authored by shrabbit's avatar shrabbit
Browse files

Add build configurations and platform settings for x64 and x86

parent 55e51ee9
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
<Solution>
  <Project Path="src/WatermarkClock/WatermarkClock.csproj" />
  <Configurations>
    <BuildType Name="Debug" />
    <BuildType Name="Release" />
    <BuildType Name="x64" />
    <BuildType Name="x86" />
    <Platform Name="Any CPU" />
    <Platform Name="X64" />
    <Platform Name="x86" />
  </Configurations>
  <Project Path="src/WatermarkClock/WatermarkClock.csproj">
    <Platform Solution="x64|X64" Project="X64" />
    <Platform Solution="x86|x86" Project="x86" />
  </Project>
</Solution>
+8 −0
Original line number Diff line number Diff line
@@ -41,6 +41,14 @@
        <ErrorReport>prompt</ErrorReport>
        <WarningLevel>4</WarningLevel>
    </PropertyGroup>
    <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'x64|X64' ">
      <OutputPath>bin\X64\x64\</OutputPath>
      <PlatformTarget>X64</PlatformTarget>
    </PropertyGroup>
    <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'x86|x86' ">
      <OutputPath>bin\x86\x86\</OutputPath>
      <PlatformTarget>x86</PlatformTarget>
    </PropertyGroup>
    <ItemGroup>
        <Reference Include="ColorPickerWPF, Version=1.0.9.0, Culture=neutral, processorArchitecture=MSIL">
          <HintPath>..\..\packages\ColorPickerWPF.1.0.9\lib\net461\ColorPickerWPF.dll</HintPath>