premake/premake-core

Specifying application manifest file in C# project...

开放

#622 创建于 2016年11月8日

 (1 条评论) (0 个反应) (0 位负责人)C (651 个派生)auto 404
enhancementhelp wantedvs20xx

仓库指标

星标
 (3,621 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

It's possible to add application manifest to C# project using line:

files { "app.manifest" }

And this generates into .csproj xml file:

<None Include="app.manifest" />

into .csproj , which is ok. But generation is missing also:

<ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <PropertyGroup> <ApplicationManifest>app.manifest</ApplicationManifest> </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.Data" />

PropertyGroup & ApplicationManifest tags.

Is there any way to walk around this missing feature while you add it ?

贡献者指南