All Projects → egramtel → Dotnet Bundle

egramtel / Dotnet Bundle

Licence: mit
MSBuild task and CLI tools for bundling .NET Core projects into MacOS applications (.app)

Projects that are alternatives of or similar to Dotnet Bundle

Pyinstaller
Freeze (package) Python programs into stand-alone executables
Stars: ✭ 8,679 (+14610.17%)
Mutual labels:  bundle
Fmbbcodebundle
🔠 BBCode bundle for Symfony projects
Stars: ✭ 56 (-5.08%)
Mutual labels:  bundle
Community Cluster
OpenFaaS Cloud Cluster for Community
Stars: ✭ 59 (+0%)
Mutual labels:  dotnet-core
Razorlight
Template engine based on Microsoft's Razor parsing engine for .NET Core
Stars: ✭ 1,068 (+1710.17%)
Mutual labels:  dotnet-core
Electron.net Musicplayer Sample
Stars: ✭ 55 (-6.78%)
Mutual labels:  dotnet-core
Fakeiteasy
The easy mocking library for .NET
Stars: ✭ 1,092 (+1750.85%)
Mutual labels:  dotnet-core
Beelabrecaptcha2bundle
💻 Symfony bundle for Google Recaptcha2
Stars: ✭ 47 (-20.34%)
Mutual labels:  bundle
Dnczeus
DncZeus 是一个基于ASP.NET Core 3 + Vue.js(iview-admin) 的前后端分离的通用后台权限(页面访问、操作按钮控制)管理系统框架。后端使用.NET Core 3 + Entity Framework Core构建,UI则是目前流行的基于Vue.js的iView(iview-admin)。项目实现了前后端的动态权限管理和控制以及基于JWT的用户令牌认证机制,让前后端的交互更流畅。码云镜像:https://gitee.com/rector/DncZeus 。演示地址(demo):
Stars: ✭ 1,104 (+1771.19%)
Mutual labels:  dotnet-core
Bundlizer
Android Bundle format support for Kotlinx Serialization.
Stars: ✭ 56 (-5.08%)
Mutual labels:  bundle
Virtualizingwrappanel
Implementation of a VirtualizingWrapPanel for WPF running .NET Framework 4.5+ or .NET Core 3.0+
Stars: ✭ 59 (+0%)
Mutual labels:  dotnet-core
Csv
Fast C# CSV parser
Stars: ✭ 53 (-10.17%)
Mutual labels:  dotnet-core
Liipurlautoconverterbundle
[DEPRECATED] This bundle will add a Twig Extension for templates with a new filter for automatically converting urls and emails in a string to html links
Stars: ✭ 53 (-10.17%)
Mutual labels:  bundle
Dotnetworkqueue
A work queue for dot.net with SQL server, SQLite, Redis and PostGreSQL backends
Stars: ✭ 58 (-1.69%)
Mutual labels:  dotnet-core
Jobhub
提取各大网站有效的招聘信息(前程无忧、智联招聘、猎聘网…)
Stars: ✭ 52 (-11.86%)
Mutual labels:  dotnet-core
Developing Solutions Azure Exam
This repository contains resources for the Exam AZ-203: Developing Solutions for Microsoft Azure. You can find direct links to resources and and practice resources to test yourself ☁️🎓📚
Stars: ✭ 59 (+0%)
Mutual labels:  dotnet-core
Aspnetauthorizationworkshop
A workshop for moving through the various new pieces in ASP.NET Core Authorization
Stars: ✭ 1,046 (+1672.88%)
Mutual labels:  dotnet-core
Yarn.msbuild
MSBuild integration for the Yarn package manager.
Stars: ✭ 57 (-3.39%)
Mutual labels:  dotnet-core
Aspnet Core Clean Arch
It is a clean architecture project template which is based on hexagonal-architecture principles built with .Net core.
Stars: ✭ 60 (+1.69%)
Mutual labels:  dotnet-core
Lexikcurrencybundle
This Symfony2 bundle provide a service and a Twig extension to convert and display currencies.
Stars: ✭ 59 (+0%)
Mutual labels:  bundle
Pugxgeneratorbundle
An enhancement of SensioGeneratorBundle
Stars: ✭ 58 (-1.69%)
Mutual labels:  bundle

dotnet-bundle

Command-line interface tools for bundling .NET Core projects into MacOS applications (.app)

Installation

Install MSBuild task via NuGet package: Dotnet.Bundle

NuGet

<PackageReference Include="Dotnet.Bundle" Version="*" />

Using the tool

dotnet msbuild -t:BundleApp -p:RuntimeIdentifier=osx-x64 [-p: ...]

Properties

Define properties to override default bundle values

<PropertyGroup>
    <CFBundleName>AppName</CFBundleName> <!-- Also defines .app file name -->
    <CFBundleDisplayName>App Name</CFBundleDisplayName>
    <CFBundleIdentifier>com.example</CFBundleIdentifier>
    <CFBundleVersion>1.0.0</CFBundleVersion>
    <CFBundlePackageType>AAPL</CFBundlePackageType>
    <CFBundleSignature>????</CFBundleSignature>
    <CFBundleExecutable>AppName</CFBundleExecutable>
    <CFBundleIconFile>AppName.icns</CFBundleIconFile> <!-- Will be copied from output directory -->
    <NSPrincipalClass>NSApplication</NSPrincipalClass>
    <NSHighResolutionCapable>true</NSHighResolutionCapable>
</PropertyGroup>

More info: https://developer.apple.com/library/archive/documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].