Skip to content

Commit

Permalink
fix *.csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
tk-yoshimura committed Feb 3, 2023
1 parent 474972f commit 872991e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
11 changes: 11 additions & 0 deletions PNGReadWrite/PNGReadWrite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,15 @@
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
</PropertyGroup>

</Project>
9 changes: 8 additions & 1 deletion PNGReadWriteTest/PNGReadWriteTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Reference Include="PNGReadWrite">
<HintPath>..\PNGReadWrite\bin\Debug\net6.0-windows\PNGReadWrite.dll</HintPath>
</Reference>
</ItemGroup>

<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Reference Include="PNGReadWrite">
<HintPath>..\PNGReadWrite\bin\Release\net6.0-windows\PNGReadWrite.dll</HintPath>
</Reference>
</ItemGroup>


</Project>

0 comments on commit 872991e

Please sign in to comment.