{"id":16515280,"url":"https://github.com/pine/felicacashingsystemv2","last_synced_at":"2025-10-28T04:32:48.294Z","repository":{"id":18208172,"uuid":"21342785","full_name":"pine/FelicaCashingSystemV2","owner":"pine","description":":credit_card: This is the electronic money system using the Sony/PaSoRi RC-S380.","archived":false,"fork":false,"pushed_at":"2016-06-15T14:26:11.000Z","size":649,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-01T11:35:07.881Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-30T07:19:56.000Z","updated_at":"2024-10-29T02:43:55.000Z","dependencies_parsed_at":"2022-09-14T11:42:00.347Z","dependency_job_id":null,"html_url":"https://github.com/pine/FelicaCashingSystemV2","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pine%2FFelicaCashingSystemV2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pine%2FFelicaCashingSystemV2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pine%2FFelicaCashingSystemV2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pine%2FFelicaCashingSystemV2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pine","download_url":"https://codeload.github.com/pine/FelicaCashingSystemV2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238597388,"owners_count":19498396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T16:16:32.632Z","updated_at":"2025-10-28T04:32:47.944Z","avatar_url":"https://github.com/pine.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"Felica Cashing System V2\n========================\n[![Build status](https://ci.appveyor.com/api/projects/status/6wod5lhh8ipne8fh/branch/master?svg=true)](https://ci.appveyor.com/project/pine613/felicacashingsystemv2/branch/master)\n\n## 概要\n非接触 IC カード FeliCa を用いた組織内電子決済システムです。\n\n|スクリーンショット|ポスター|\n|------------------|--------|\n|[![スクリーンショット](SS-min.png)](SS.png)|[![ポスター](Poster-min.png)](http://cdn.rawgit.com/pine613/FelicaCashingSystemV2/master/Poster.pdf)|\n\n## 開発言語\n- C#\n- XAML\n\n## 開発環境\n- Windows 7 / 8.1\n- Visual Studio 2013 Professional\n- SONY PaSoRi RC-S380\n\n## 利用しているライブラリ\n- .NET Framework 4.5\n  - Windows Forms (一部のみ)\n  - WPF\n- MashApps.Metro ([カスタマイズ版](https://github.com/pine613/MahApps.Metro/tree/felica_master) を使用)\n- [MongoDB](http://www.mongodb.org) (v2.6)\n- [iTextSharp](http://sourceforge.net/projects/itextsharp/)\n- Adobe Acrobat 7.0 Browser Control Type Library 1.0\n- PC/SC (WinScard.dll)\n- [NuGet](https://dist.nuget.org/index.html)\n- [IPAex フォント](http://ipafont.ipa.go.jp)\n\n## ビルド\nソリューションを Visual Studio で開き、構成を **Release** にしてビルドしてください。ビルドには、Adobe Reader と NuGet コマンドラインツール、及び PowerShell がインストールされている必要があります。\n\n```\n$ git clone https://github.com/pine613/FelicaCashingSystemV2.git\n$ git clone https://github.com/pine613/FelicaCashingSystemV2_Settings.git\n\n$ cd FelicaCashingSystemV2\n$ git submodule update --init\n$ powershell -NoProfile -ExecutionPolicy Unrestricted -File Build.ps1\n```\n\nビルド時には、下記フォルダに IPAex フォント (ipaexm.ttf, ipaexg.ttf) が入っているように、事前にダウンロードしておいてください。\n\n```\nFelicaCashingSystemV2_Settings/KutDormitoryReport/KutDormitoryReport/KutDormitoryReport\n```\n\n## インストール\nビルド結果をインストール先にコピーしてください。\n\n## 起動\nFelicaCashingSystemV2.exe を実行してください。起動には、以下のソフトウェアが必要です。\n\n- .NET Framework 4.5\n- [Adobe Reader](http://www.adobe.com/jp/products/reader.html)\n- [NFCポートソフトウェア](http://www.sony.co.jp/Products/felica/consumer/download/netinstaller.html)\n\n接続先データベース (MongoDB) の設定は、FelicaCashingSystemV2.exe.config へ記述します。同一ホストで動作している場合、下記の通りになります (デフォルトのポート番号は 27017 です)。\n\n```xml\n\u003csetting name=\"ConnectionString\" serializeAs=\"String\"\u003e\n    \u003cvalue\u003emongodb://localhost\u003c/value\u003e\n\u003c/setting\u003e\n```\n\n別ホストや別ポートで動作している場合、以下のようになります。\n\n```xml\n\u003csetting name=\"ConnectionString\" serializeAs=\"String\"\u003e\n    \u003cvalue\u003emongodb://192.168.0.32:20002\u003c/value\u003e\n\u003c/setting\u003e\n```\n\n## 関係するプロジェクト\n- [FelicaSharp](https://github.com/pine613/FelicaSharp)\u003cbr /\u003e\n  カードリーダー (PaSoRi) を C# から利用するためのライブラリ\n- [FelicaDataV2](https://github.com/pine613/FelicaDataV2)\u003cbr /\u003e\n  Felica Cashing System V2 のデータベースレイヤを担当するモジュール\n- [KutDormitoryReport](https://github.com/pine613/KutDormitoryReport)\u003cbr /\u003e\n  高知工科大学ドミトリーの門限超過届けを自動発行する部分のモジュール\n- [FelicaCashingSustemV2_Settings](https://github.com/pine613/FelicaCashingSystemV2_Settings)\u003cbr /\u003e\n  Felica Cashing System V2 ビルド時に必要となる設定\n- [RobotClubKut](https://github.com/RobotClubKut) / [FelicaCashingSystemV2_Settings](https://github.com/RobotClubKut/FelicaCashingSystemV2_Settings)\u003cbr /\u003e\n  ロボット倶楽部で運用している Felica Cashing System V2 の設定 (非公開)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpine%2Ffelicacashingsystemv2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpine%2Ffelicacashingsystemv2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpine%2Ffelicacashingsystemv2/lists"}