forked from nkasco/IT-Admin-Toolkit-WinUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathITATKWinUI.csproj
144 lines (141 loc) · 6.15 KB
/
ITATKWinUI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>ITATKWinUI</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64</RuntimeIdentifiers>
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
<WindowsPackageType>None</WindowsPackageType>
<Configurations>Debug;Release</Configurations>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>False</Optimize>
</PropertyGroup>
<ItemGroup>
<Content Remove="Assets\ITATKWinUI.png" />
<Content Remove="Assets\ITATKWinUIPromo.jpg" />
</ItemGroup>
<ItemGroup>
<None Remove=".DS_Store" />
<None Remove="Assets\Powershell5.png" />
<None Remove="Assets\Powershell7.ico" />
<None Remove="Loading.xaml" />
<None Remove="MachineInfo.ps1" />
<None Remove="Reporting.xaml" />
<None Remove="Settings.xaml" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\SplashScreen.scale-200.png" />
<Content Include="Assets\LockScreenLogo.scale-200.png" />
<Content Include="Assets\Square150x150Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls" Version="7.1.2" />
<PackageReference Include="CsvHelper" Version="28.0.1" />
<PackageReference Include="microsoft.powershell.sdk" Version="7.2.5" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.1" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.1.3" />
<PackageReference Include="PInvoke.User32" Version="0.7.124" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>
<!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Tools extension to be activated for this project even if the Windows App SDK Nuget
package has not yet been restored -->
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>
<ItemGroup>
<Content Update="Assets\Powershell5.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="Assets\Powershell7.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Update="Changelog.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="MachineInfoGather.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Modules\CimCmdlets\CimCmdlets.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\PSDiagnostics\PSDiagnostics.psd1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Modules\PSDiagnostics\PSDiagnostics.psm1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Usage.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<Page Update="Reporting.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
<None Update="Scripts\MultiLineTestScript.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Settings.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Updater.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="XML\Categories.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="XML\Scripts.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Page Update="Loading.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<Page Update="Settings.xaml">
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
</Project>