auto app building
This commit is contained in:
15
NuGet.config
Normal file
15
NuGet.config
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||||
|
<add key="gitea" value="https://git.marketally.com/api/packages/AuroraOSS/nuget/index.json" />
|
||||||
|
</packageSources>
|
||||||
|
<packageSourceMapping>
|
||||||
|
<packageSource key="nuget.org">
|
||||||
|
<package pattern="*" />
|
||||||
|
</packageSource>
|
||||||
|
<packageSource key="gitea">
|
||||||
|
<package pattern="OpenMaui.*" />
|
||||||
|
</packageSource>
|
||||||
|
</packageSourceMapping>
|
||||||
|
</configuration>
|
||||||
@@ -28,11 +28,16 @@
|
|||||||
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- OpenMaui Linux Platform (used on Linux) -->
|
<!-- OpenMaui Linux Platform - Local development (ProjectReference) -->
|
||||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') AND '$(UsePackageReference)' != 'true'">
|
||||||
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- OpenMaui Linux Platform - CI/CD builds (PackageReference) -->
|
||||||
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND (!Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') OR '$(UsePackageReference)' == 'true')">
|
||||||
|
<PackageReference Include="OpenMaui.Controls.Linux" Version="*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- XAML Files -->
|
<!-- XAML Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<MauiXaml Update="**/*.xaml" />
|
<MauiXaml Update="**/*.xaml" />
|
||||||
|
|||||||
@@ -28,11 +28,16 @@
|
|||||||
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- OpenMaui Linux Platform (used on Linux) -->
|
<!-- OpenMaui Linux Platform - Local development (ProjectReference) -->
|
||||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') AND '$(UsePackageReference)' != 'true'">
|
||||||
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- OpenMaui Linux Platform - CI/CD builds (PackageReference) -->
|
||||||
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND (!Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') OR '$(UsePackageReference)' == 'true')">
|
||||||
|
<PackageReference Include="OpenMaui.Controls.Linux" Version="*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- XAML Files -->
|
<!-- XAML Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<MauiXaml Update="**/*.xaml" />
|
<MauiXaml Update="**/*.xaml" />
|
||||||
|
|||||||
@@ -28,11 +28,16 @@
|
|||||||
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!-- OpenMaui Linux Platform (used on Linux) -->
|
<!-- OpenMaui Linux Platform - Local development (ProjectReference) -->
|
||||||
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux'))">
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') AND '$(UsePackageReference)' != 'true'">
|
||||||
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
<ProjectReference Include="../../maui-linux/OpenMaui.Controls.Linux.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- OpenMaui Linux Platform - CI/CD builds (PackageReference) -->
|
||||||
|
<ItemGroup Condition="$([MSBuild]::IsOSPlatform('Linux')) AND (!Exists('../../maui-linux/OpenMaui.Controls.Linux.csproj') OR '$(UsePackageReference)' == 'true')">
|
||||||
|
<PackageReference Include="OpenMaui.Controls.Linux" Version="*" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<!-- XAML Files -->
|
<!-- XAML Files -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<MauiXaml Update="**/*.xaml" />
|
<MauiXaml Update="**/*.xaml" />
|
||||||
|
|||||||
Reference in New Issue
Block a user