diff options
| author | Jacob Palecki <[email protected]> | 2020-09-25 19:35:54 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-25 19:35:54 -0700 |
| commit | f2279a5c52d5da43e48133e753514b3806bb7e3c (patch) | |
| tree | 328830580cf5bb96a317a61bef3e155dc2a17fd5 /grapher/grapher.csproj | |
| parent | Use log LUT rather than binary search for last mouse move point (diff) | |
| parent | add initial writer (diff) | |
| download | rawaccel-f2279a5c52d5da43e48133e753514b3806bb7e3c.tar.xz rawaccel-f2279a5c52d5da43e48133e753514b3806bb7e3c.zip | |
merge with writer
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" /> |