premake/premake-core

Specifying application manifest file in C# project...

Aberta

#622 aberto em 8 de nov. de 2016

 (1 comentário) (0 reação) (0 responsável)C (651 forks)auto 404
enhancementhelp wantedvs20xx

Métricas do repositório

Stars
 (3.621 estrelas)
Métricas de merge de PR
 (Métricas PR pendentes)

Description

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 ?

Guia do colaborador