Closed chrgei closed 1 year ago
0.9.4.1
17.6.4
I have found an issue with the Property 'Configurations'. I can not change this.
The problem is in FireGiant.HeatWave.DesignTime.targets.
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.
UPDATE: I have seen, I have used an old Version of HeatWave. The Version 1.0.1.1 works.
Duplicate of #12
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
.I have change it to:
... and it works.