Skip to content

Commit

Permalink
Corrected outputs for MAUI projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitali Lesheniuk committed Jun 16, 2022
1 parent e921c43 commit a5b0eaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<OutputPath>..\..\..\bin\maui\build</OutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Build.Framework" Version="17.2.0" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.2.0" />
<PackageReference Include="Microsoft.Build.Framework" Version="17.2.0" IncludeAssets="compile"/>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.2.0" IncludeAssets="compile"/>
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
</ItemGroup>

Expand Down
8 changes: 4 additions & 4 deletions source/MAUI/MauiTest/MauiTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
<ProjectReference Include="..\CompiledBindings\CompiledBindings.csproj" />
</ItemGroup>

<UsingTask TaskName="MauiGenerateCodeTask" AssemblyFile="..\..\..\bin\net472\CompiledBindings.MAUI.dll" />
<UsingTask TaskName="MauiProcessResourceXamlTask" AssemblyFile="..\..\..\bin\net472\CompiledBindings.MAUI.dll" />
<UsingTask TaskName="ProcessAssemblyTask" AssemblyFile="..\..\..\bin\net472\CompiledBindings.Core.dll" />
<UsingTask TaskName="UpdateReferenceCopyLocalTask" AssemblyFile="..\..\..\bin\net472\CompiledBindings.Core.dll" />
<UsingTask TaskName="MauiGenerateCodeTask" AssemblyFile="..\..\..\bin\maui\build\netstandard2.0\CompiledBindings.MAUI.dll" />
<UsingTask TaskName="MauiProcessResourceXamlTask" AssemblyFile="..\..\..\bin\maui\build\netstandard2.0\CompiledBindings.MAUI.dll" />
<UsingTask TaskName="ProcessAssemblyTask" AssemblyFile="..\..\..\bin\maui\build\netstandard2.0\CompiledBindings.Core.dll" />
<UsingTask TaskName="UpdateReferenceCopyLocalTask" AssemblyFile="..\..\..\bin\maui\build\netstandard2.0\CompiledBindings.Core.dll" />

<PropertyGroup>
<LocalAssemblyGenerated>false</LocalAssemblyGenerated>
Expand Down

0 comments on commit a5b0eaa

Please sign in to comment.