Skip to content

Commit

Permalink
Fixed appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Sep 30, 2024
1 parent 2eeb881 commit 471d556
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
40 changes: 39 additions & 1 deletion Mirivoice.Desktop/Mirivoice.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,45 @@
<RootNamespace>Mirivoice.Desktop</RootNamespace>
<Company>EX3</Company>
</PropertyGroup>

<PropertyGroup>
<CFBundleName>MiriVoice</CFBundleName>
<CFBundleDisplayName>MiriVoice</CFBundleDisplayName>
<CFBundleIdentifier>com.ex3.mirivoice</CFBundleIdentifier>
<CFBundleVersion>0.0.0</CFBundleVersion>
<CFBundleShortVersionString>0.0.0</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>MiriVoice</CFBundleExecutable>
<CFBundleIconFile>mirivoice.icns</CFBundleIconFile>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
<CFBundleDocumentTypes>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>MiriVoice Project File</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>mrp</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>mirivoice.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>com.ex3.mirivoice.mrp</string>
</array>
</dict>
</array>
</CFBundleDocumentTypes>
<AssemblyName>MiriVoice.Main</AssemblyName>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Company>EX3</Company>
<Product>MiriVOice</Product>
<Authors>EX3</Authors>
</PropertyGroup>
<ItemGroup>
<Content Include="mirivoice-logo.ico" />
</ItemGroup>
Expand Down
40 changes: 1 addition & 39 deletions Mirivoice/Mirivoice.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,7 @@
<LangVersion>latest</LangVersion>

</PropertyGroup>
<PropertyGroup>
<CFBundleName>MiriVoice</CFBundleName>
<CFBundleDisplayName>MiriVoice</CFBundleDisplayName>
<CFBundleIdentifier>com.ex3.mirivoice</CFBundleIdentifier>
<CFBundleVersion>0.0.0</CFBundleVersion>
<CFBundleShortVersionString>0.0.0</CFBundleShortVersionString>
<CFBundlePackageType>APPL</CFBundlePackageType>
<CFBundleSignature>????</CFBundleSignature>
<CFBundleExecutable>MiriVoice</CFBundleExecutable>
<CFBundleIconFile>mirivoice.icns</CFBundleIconFile>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
<CFBundleDocumentTypes>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>MiriVoice Project File</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>mrp</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>mirivoice.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>com.ex3.mirivoice.mrp</string>
</array>
</dict>
</array>
</CFBundleDocumentTypes>
<AssemblyName>MiriVoice.Main</AssemblyName>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Company>EX3</Company>
<Product>MiriVOice</Product>
<Authors>EX3</Authors>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ for:
build_script:
- pwd
- dotnet restore Mirivoice.Desktop/Mirivoice.Desktop.csproj
- dotnet build Mirivoice.Desktop/Mirivoice.Desktop.csproj -t:BundleApp -c Release -r osx-x64 --self-contained true
- dotnet publish Mirivoice.Desktop/Mirivoice.Desktop.csproj -c Release -r osx-x64 --self-contained true
- cp Mirivoice/Assets/mirivoice.icns Mirivoice.Desktop/bin/x64/Release/net8.0/osx-x64/MiriVoice.app/Contents/Resources/
- npm install -g create-dmg
- create-dmg Mirivoice.Desktop/bin/x64/Release/net8.0/osx-x64/MiriVoice.app
- mv *.dmg MiriVoice-osx-x64.dmg
- create-dmg 'Mirivoice.Desktop/bin/x64/Release/net8.0/osx-x64/MiriVoice.app' --overwrite --dmg-title=MiriVoice-osx-x64
- codesign -fvs - MiriVoice-osx-x64.dmg

-
matrix:
only:
Expand Down

0 comments on commit 471d556

Please sign in to comment.