Skip to content

Commit

Permalink
additional config updates to hopefully help encrypted builds
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstonis committed Oct 23, 2021
1 parent 00edd59 commit 7e2a28a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tycho/Tycho.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Encrypted|AnyCPU' ">
<IntermediateOutputPath>obj\Encrypted\netstandard2.1</IntermediateOutputPath>
<IntermediateOutputPath>obj\Encrypted</IntermediateOutputPath>
<DebugType></DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Encrypted\netstandard2.1</OutputPath>
<OutputPath>bin\Encrypted</OutputPath>
<DefineConstants>TRACE;RELEASE;ENCRYPTED;NETSTANDARD;NETSTANDARD2_1;</DefineConstants>
<WarningLevel>4</WarningLevel>
<DocumentationFile></DocumentationFile>
Expand All @@ -43,12 +43,12 @@
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="5.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' != 'Encrypted'">
<ItemGroup Condition=" '$(Configuration)' != 'Encrypted' ">
<PackageReference Include="Microsoft.Data.Sqlite" Version="5.0.11" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.0.6" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)' == 'Encrypted'">
<ItemGroup Condition=" '$(Configuration)' == 'Encrypted' ">
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="5.0.11" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlcipher" Version="2.0.6" />
</ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Teardown(context =>
Task ("Clean")
.Does (() =>
{
CleanDirectories ("./Tycho/bin");
CleanDirectories ("./Tycho/obj");
CleanDirectories ("./Tycho*/bin");
CleanDirectories ("./Tycho*/obj");

Expand Down

0 comments on commit 7e2a28a

Please sign in to comment.