-
Notifications
You must be signed in to change notification settings - Fork 2
/
WebPageHost.csproj
66 lines (57 loc) · 2.37 KB
/
WebPageHost.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>WebPageHost</Title>
<Description>Simple Windows Command line (CLI) tool to open URLs in WebView2 (Microsoft Edge web browser control).</Description>
<ProductName>WebPageHost (Preview)</ProductName>
<Copyright>Copyright © Thomas Gossler</Copyright>
<Company>Thomas Gossler</Company>
</PropertyGroup>
<Import Project="Version.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows7.0</TargetFramework>
<DisableWinExeOutputInference>true</DisableWinExeOutputInference>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon />
<StartupObject>WebPageHost.Program</StartupObject>
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Deterministic>false</Deterministic>
<Nullable>enable</Nullable>
<PackageProjectUrl>https://github.com/thgossler/WebPageHost</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/thgossler/WebPageHost</RepositoryUrl>
<AssemblyVersion>1.0.7.0</AssemblyVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<FileVersion>1.0.7.0</FileVersion>
<Version>1.0.7.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<None Remove="AutoLogin.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AutoLogin.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="InputSimulatorCore" Version="1.0.5" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.2903.40" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="Spectre.Console.Cli" Version="0.49.1" />
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>