Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bbonkr/catchmeifyoucan

It's easy. 😁😁😁 Let click the button within the window.
https://github.com/bbonkr/catchmeifyoucan

dotnet dotnet5 winforms

Last synced: 15 days ago
JSON representation

It's easy. 😁😁😁 Let click the button within the window.

Awesome Lists containing this project

README

        

# Catch me if you can

## Summary

It's easy. 😁😁😁

Let click the button within the window.

![screenshot](./contents/screenshot.png)

## Run

Needs [.NET 5](https://dotnet.microsoft.com/download/dotnet/5.0) installation.

### Use Visual studio

Build and run.

### Use CLI

```bash
$ cd src/CatchMeIfYouCan
$ dotnet build
$ dotnet run
```

## Publish

Use self-contained options when needs independent execution file.

e.g.) Publish to Windows x64 target self contained execution file:

```bash
$ cd src/CatchMeIfYouCan
$ dotnet build
$ dotnet publish -c Release --self-contained --runteim win-x64 -o out
```

References:

- [.NET Core application publishing overview](https://docs.microsoft.com/ko-kr/dotnet/core/deploying/#publish-framework-dependent)
- [dotnet publish](https://docs.microsoft.com/ko-kr/dotnet/core/tools/dotnet-publish)
- [.NET Core RID Catalog](https://docs.microsoft.com/ko-kr/dotnet/core/rid-catalog)