diff options
| author | a1xd <[email protected]> | 2020-09-25 18:46:04 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2020-09-25 18:46:04 -0400 |
| commit | fd184b6ffeaf5b1d1dceb7de58a8ebb7c3d8c760 (patch) | |
| tree | 4e00b478ac1d888c50beaa782733cf52c61d038b /grapher/grapher.csproj | |
| parent | Merge pull request #22 from JacobPalecki/GUI (diff) | |
| download | rawaccel-fd184b6ffeaf5b1d1dceb7de58a8ebb7c3d8c760.tar.xz rawaccel-fd184b6ffeaf5b1d1dceb7de58a8ebb7c3d8c760.zip | |
add initial writer
move managed settings into wrapper
move gui build into driver build dir
Diffstat (limited to 'grapher/grapher.csproj')
| -rw-r--r-- | grapher/grapher.csproj | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/grapher/grapher.csproj b/grapher/grapher.csproj index bc9fcf2..29b5cff 100644 --- a/grapher/grapher.csproj +++ b/grapher/grapher.csproj @@ -15,7 +15,7 @@ </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> <DebugSymbols>true</DebugSymbols> - <OutputPath>bin\x64\Debug\</OutputPath> + <OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\</OutputPath> <DefineConstants>DEBUG;TRACE</DefineConstants> <DebugType>full</DebugType> <PlatformTarget>x64</PlatformTarget> @@ -25,7 +25,7 @@ <Prefer32Bit>true</Prefer32Bit> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> - <OutputPath>bin\x64\Release\</OutputPath> + <OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\</OutputPath> <DefineConstants>TRACE</DefineConstants> <Optimize>true</Optimize> <DebugType>pdbonly</DebugType> @@ -101,7 +101,6 @@ <Compile Include="Models\Options\OptionBase.cs" /> <Compile Include="Models\Options\OptionXY.cs" /> <Compile Include="Models\Serialized\GUISettings.cs" /> - <Compile Include="Models\Serialized\DriverSettings.cs" /> <Compile Include="Models\Serialized\RawAccelSettings.cs" /> <Compile Include="Models\Serialized\SettingsManager.cs" /> <Compile Include="Program.cs" /> |