Skip to content

Commit 01983c4

Browse files
committed
published - test
1 parent 0668d37 commit 01983c4

File tree

2 files changed

+83
-4
lines changed

2 files changed

+83
-4
lines changed
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3+
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
4+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
5+
<security>
6+
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
7+
<!-- UAC Manifest Options
8+
If you want to change the Windows User Account Control level replace the
9+
requestedExecutionLevel node with one of the following.
10+
11+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
12+
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
13+
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
14+
15+
Specifying requestedExecutionLevel element will disable file and registry virtualization.
16+
Remove this element if your application requires this virtualization for backwards
17+
compatibility.
18+
-->
19+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
20+
</requestedPrivileges>
21+
<applicationRequestMinimum>
22+
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
23+
<defaultAssemblyRequest permissionSetReference="Custom" />
24+
</applicationRequestMinimum>
25+
</security>
26+
</trustInfo>
27+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
28+
<application>
29+
<!-- A list of the Windows versions that this application has been tested on and is
30+
is designed to work with. Uncomment the appropriate elements and Windows will
31+
automatically selected the most compatible environment. -->
32+
<!-- Windows Vista -->
33+
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
34+
<!-- Windows 7 -->
35+
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
36+
<!-- Windows 8 -->
37+
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
38+
<!-- Windows 8.1 -->
39+
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
40+
<!-- Windows 10 -->
41+
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
42+
</application>
43+
</compatibility>
44+
<!-- Indicates that the application is DPI-aware and will not be automatically scaled by Windows at higher
45+
DPIs. Windows Presentation Foundation (WPF) applications are automatically DPI-aware and do not need
46+
to opt in. Windows Forms applications targeting .NET Framework 4.6 that opt into this setting, should
47+
also set the 'EnableWindowsFormsHighDpiAutoResizing' setting to 'true' in their app.config. -->
48+
<!--
49+
<application xmlns="urn:schemas-microsoft-com:asm.v3">
50+
<windowsSettings>
51+
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
52+
</windowsSettings>
53+
</application>
54+
-->
55+
<!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
56+
<!--
57+
<dependency>
58+
<dependentAssembly>
59+
<assemblyIdentity
60+
type="win32"
61+
name="Microsoft.Windows.Common-Controls"
62+
version="6.0.0.0"
63+
processorArchitecture="*"
64+
publicKeyToken="6595b64144ccf1df"
65+
language="*"
66+
/>
67+
</dependentAssembly>
68+
</dependency>
69+
-->
70+
</assembly>

src/UseCaseMakerApp/UseCaseMakerApp.csproj

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<OldToolsVersion>2.0</OldToolsVersion>
3131
<TargetFrameworkProfile />
3232
<IsWebBootstrapper>false</IsWebBootstrapper>
33-
<PublishUrl>publish\</PublishUrl>
33+
<PublishUrl>..\..\publish\</PublishUrl>
3434
<Install>true</Install>
3535
<InstallFrom>Disk</InstallFrom>
3636
<UpdateEnabled>false</UpdateEnabled>
@@ -40,9 +40,10 @@
4040
<UpdatePeriodically>false</UpdatePeriodically>
4141
<UpdateRequired>false</UpdateRequired>
4242
<MapFileExtensions>true</MapFileExtensions>
43-
<ApplicationRevision>0</ApplicationRevision>
43+
<ApplicationRevision>1</ApplicationRevision>
4444
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
4545
<UseApplicationTrust>false</UseApplicationTrust>
46+
<PublishWizardCompleted>true</PublishWizardCompleted>
4647
<BootstrapperEnabled>true</BootstrapperEnabled>
4748
</PropertyGroup>
4849
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -99,6 +100,15 @@
99100
<PropertyGroup>
100101
<ManifestCertificateThumbprint>9D0E354D11C9803432F14574794C420B2C4137AC</ManifestCertificateThumbprint>
101102
</PropertyGroup>
103+
<PropertyGroup>
104+
<GenerateManifests>true</GenerateManifests>
105+
</PropertyGroup>
106+
<PropertyGroup>
107+
<TargetZone>LocalIntranet</TargetZone>
108+
</PropertyGroup>
109+
<PropertyGroup>
110+
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
111+
</PropertyGroup>
102112
<ItemGroup>
103113
<Reference Include="itextsharp, Version=4.0.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca, processorArchitecture=MSIL" />
104114
<Reference Include="System">
@@ -151,12 +161,10 @@
151161
<Content Include="Icons\UseCase.ico" />
152162
<Content Include="Icons\UseCases.ico" />
153163
<Content Include="Images\ucm_splash.jpg" />
154-
<Content Include="Languages\Localization_de-de.xml" />
155164
<Content Include="Languages\Localization_el-gr.xml" />
156165
<Content Include="Languages\Localization_en-us.xml" />
157166
<Content Include="Languages\Localization_es-es.xml" />
158167
<Content Include="Languages\Localization_it-it.xml" />
159-
<Content Include="Languages\Localization_ja-jp.xml" />
160168
<Content Include="Languages\Localization_pt-br.xml" />
161169
<Content Include="Reports\Actor.gif" />
162170
<Content Include="Reports\Actor.xsl" />
@@ -332,6 +340,7 @@
332340
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
333341
</EmbeddedResource>
334342
<None Include="app.config" />
343+
<None Include="Properties\app.manifest" />
335344
<None Include="UseCaseMaker.config" />
336345
</ItemGroup>
337346
<ItemGroup>

0 commit comments

Comments
 (0)