Merge remote-tracking branch 'refs/remotes/origin/master'
continuous-integration/drone/push Build is failing Details

DataBinding
Vianney JOURDY 2 years ago
commit 57582f2459

@ -13,7 +13,7 @@ steps:
commands:
- cd MangaMap/
- dotnet restore MangaMap.sln
- dotnet build MangaMap.sln -c Debug --no-restore
- dotnet build MangaMap.sln -c Release --no-restore --framework net7.0
- dotnet publish MangaMap.sln -c Release --no-restore -o $CI_PROJECT_DIR/build/release --framework net7.0
- name: tests

@ -2,11 +2,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;$(TargetFrameworks)</TargetFrameworks>
<TargetFrameworks>net7.0;</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
<OutputType>Exe</OutputType>
<OutputType Condition="'$(TargetFramework)' != 'net7.0'">Exe</OutputType>
<RootNamespace>MangaMap</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>

Loading…
Cancel
Save