-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOnboardingHelper-NetCore.csproj
More file actions
106 lines (97 loc) · 3.75 KB
/
OnboardingHelper-NetCore.csproj
File metadata and controls
106 lines (97 loc) · 3.75 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<RootNamespace>Zest_Script</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
<StartupObject>Zest_Script.Program</StartupObject>
<ApplicationIcon>onboard.ico</ApplicationIcon>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Description>A utility program that helps MSP's on-board new client's and computers by automating some common tasks.
-> import/export configuration files
-> portable (does not require install)
-> add accounts, programs, wifi, and more to the configuration
-> fully automated</Description>
<Copyright>(c) 2022 Ethan Hann</Copyright>
<PackageIcon>onboarding.png</PackageIcon>
<FileVersion>1.0.0.0</FileVersion>
<Company>Tortal</Company>
<Product>Zest Script</Product>
<Authors>Ethan Hann</Authors>
<RepositoryUrl>https://github.com/tlit-baytown/OnboardingHelper-NetCore.git</RepositoryUrl>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyName>Zest Script</AssemblyName>
</PropertyGroup>
<ItemGroup>
<COMReference Include="WUApiLib">
<VersionMinor>0</VersionMinor>
<VersionMajor>2</VersionMajor>
<Guid>b596cc9f-56e5-419e-a622-e01bb457431e</Guid>
<Lcid>0</Lcid>
<WrapperTool>tlbimp</WrapperTool>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<Content Include="onboard.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\..\Downloads\onboarding.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.2" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1185.39" />
<PackageReference Include="System.Management.Automation" Version="7.2.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="docs\Accounts.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="docs\Basic.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="docs\styles.css">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\Prereqs.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\printers\GetPrinterDrivers.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\windows-update\CheckAndInstallUpdates.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\windows-update\CheckUpdates.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\windows-update\InstallUpdates.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="scripts\windows-update\PreReq.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>