Skip to content

Commit

Permalink
Merge pull request #511 from RaulPerez1/DefaultValues
Browse files Browse the repository at this point in the history
Add default values for properties used in the property pages
  • Loading branch information
RaulPerez1 authored Dec 16, 2016
2 parents 5bf1f21 + 54733d2 commit 8be823e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<!--
Ensure VS sees two default configurations: Debug|AnyCPU and Release|AnyCPU
This is temproary until we have designed and implemented a new configuration management scheme,
This is temporary until we have designed and implemented a new configuration management scheme,
which is tracked by https://github.com/dotnet/sdk/issues/350. In the meantime, one consequence of
defining these defaults here with the old inference-from-usage scheme here is that the user cannot
remove or rename them.
Expand Down Expand Up @@ -68,6 +68,12 @@ Copyright (c) .NET Foundation. All rights reserved.
<!-- Exclude GAC, registry, output directory from search paths. -->
<AssemblySearchPaths>{CandidateAssemblyFiles};{HintPathFromItem};{TargetFrameworkDirectory};{RawFileName}</AssemblySearchPaths>
<DesignTimeAssemblySearchPaths>$(AssemblySearchPaths)</DesignTimeAssemblySearchPaths>

<AllowUnsafeBlocks Condition="'$(AllowUnsafeBlocks)'==''">false</AllowUnsafeBlocks>
<TreatWarningsAsErrors Condition="'$(TreatWarningsAsErrors)'==''">false</TreatWarningsAsErrors>
<Prefer32Bit Condition="'$(Prefer32Bit)'==''">false</Prefer32Bit>
<SignAssembly Condition="'$(SignAssembly)'==''">false</SignAssembly>
<DelaySign Condition="'$(DelaySign)'!=''">false</DelaySign>
</PropertyGroup>

<!-- Temporary workarounds -->
Expand Down

0 comments on commit 8be823e

Please sign in to comment.