Skip to content

Commit

Permalink
fix: the csproj files to output the correct file for the build process (
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotCamblor authored Dec 15, 2023
1 parent b7781d8 commit 53ffe3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions DevCycle.SDK.Server.Cloud/DevCycle.SDK.Server.Cloud.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
<PropertyGroup Condition="'$(Configuration)' == 'Debug|AnyCPU'">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
Expand Down
7 changes: 5 additions & 2 deletions DevCycle.SDK.Server.Local/DevCycle.SDK.Server.Local.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
<PropertyGroup Condition="'$(Configuration)' == 'Debug|AnyCPU'">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.22.1" />
Expand Down

0 comments on commit 53ffe3d

Please sign in to comment.