firegiant / HeatWaveSupport

Issues-only repository to report HeatWave bugs and feature requests to FireGiant
3 stars 0 forks source link

Problem with Property 'Configurations' #38

Closed chrgei closed 1 year ago

chrgei commented 1 year ago

HeatWave Version

0.9.4.1

Visual Studio Version

17.6.4

Description

I have found an issue with the Property 'Configurations'. I can not change this.

The problem is in FireGiant.HeatWave.DesignTime.targets.

  <!-- Declare the valid project configurations -->
  <PropertyGroup xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <Configurations>Debug;Release</Configurations>
    <Platforms>x86;x64;ARM64</Platforms>
  </PropertyGroup>

I have change it to:

  <!-- Declare the valid project configurations -->
  <PropertyGroup>
    <Configurations Condition=" '$(Configurations)' == '' ">Debug;Release</Configurations>
    <Platforms>x86;x64;ARM64</Platforms>
  </PropertyGroup>

... and it works.

chrgei commented 1 year ago

UPDATE: I have seen, I have used an old Version of HeatWave. The Version 1.0.1.1 works.

FireGiantHelp commented 1 year ago

Duplicate of #12