Skip to content

Commit

Permalink
Added x64 architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 3, 2024
1 parent d8dbaba commit ae35d21
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions Mirivoice.Desktop/Mirivoice.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<Company>EX3</Company>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>


Expand Down
10 changes: 10 additions & 0 deletions Mirivoice.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,27 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Debug|x64.ActiveCfg = Debug|x64
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Debug|x64.Build.0 = Debug|x64
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Release|Any CPU.Build.0 = Release|Any CPU
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Release|x64.ActiveCfg = Release|x64
{D59E547B-0362-487C-A90A-B27FC478F8D4}.Release|x64.Build.0 = Release|x64
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Debug|x64.ActiveCfg = Debug|x64
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Debug|x64.Build.0 = Debug|x64
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Release|Any CPU.Build.0 = Release|Any CPU
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Release|x64.ActiveCfg = Release|x64
{1CBB2774-A794-4442-BBEF-4C0A64B3D77E}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions Mirivoice/App.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Mirivoice.ViewModels;

Check warning on line 18 in Mirivoice/App.axaml.cs

View workflow job for this annotation

GitHub Actions / build (win-x64)

The using directive for 'Mirivoice.ViewModels' appeared previously in this namespace

Check warning on line 18 in Mirivoice/App.axaml.cs

View workflow job for this annotation

GitHub Actions / build (linux-x64)

The using directive for 'Mirivoice.ViewModels' appeared previously in this namespace

Check warning on line 18 in Mirivoice/App.axaml.cs

View workflow job for this annotation

GitHub Actions / build (osx-x64)

The using directive for 'Mirivoice.ViewModels' appeared previously in this namespace
namespace Mirivoice;


Expand Down
8 changes: 8 additions & 0 deletions Mirivoice/Mirivoice.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@
<LangVersion>latest</LangVersion>
<AssemblyName>Mirivoice.Main</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64</Platforms>

</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
Expand Down

0 comments on commit ae35d21

Please sign in to comment.