1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WPFのある生活(3日目)

Last updated at Posted at 2016-05-29

開発職ではないため、現場にはVisualStudioなんていうセレブなツールなんて存在しない。無論、インストールもできない。しかし、MSBuild自体はインストールされているので、アプリを作ろうと思えば出来なくはない。

調べたところ、必要なファイルはおおよそこんな感じ。だが、すべて手書きで用意する必要がある。また、インターネットも出来ない環境なので、受験勉強以来の暗記をすることにした。

階層とファイル群

C:.
│  WpfApplication1.sln
│
└──WpfApplication1
    │ *WpfApplication1.csproj
    │ *App.config
    │  App.xaml
    │  App.xaml.cs
    │  MainWindow.xaml
    │  MainWindow.xaml.cs
    │
    └──Properties
        │  AssemblyInfo.cs
        │ *Resources.resx
        │  Resources.Designer.cs
        │ *Settings.settings
        │  Settings.Designer.cs

#参考サイト

プロジェクトファイル(xxx.csproj)

MSBuidが読み込むファイルと理解している。コンパイルの対象は何かとかを指定する。

リソース系(Resources.resx)

リソース追加はVisualStudio様の助けがないと無理っぽい

Resgen.exe

このツールは、Visual Studio と共に自動的にインストールされます。 このツールを実行するには、開発者コマンド プロンプト (または、Windows 7 の Visual Studio コマンド プロンプト) を使用します。 詳細については、「Visual Studio 用開発者コマンド プロンプト」を参照してください。

設定ファイル系(App.config , Settings.settings)

Exeを右クリック系(AssemblyInfo.cs)

よくわからなかった。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?