-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInternetExoExplorer.csproj
More file actions
32 lines (27 loc) · 1.01 KB
/
Copy pathInternetExoExplorer.csproj
File metadata and controls
32 lines (27 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>InternetExoExplorer.InternetExoExplorer</StartupObject>
<PlatformTarget>AnyCPU</PlatformTarget>
<ApplicationIcon>InternetExoExplorer.ico</ApplicationIcon>
<AssemblyTitle>InternetExoExplorer</AssemblyTitle>
<Title>InternetExoExplorer</Title>
<Company>https://github.com/ArTDsL</Company>
<Copyright>https://github.com/ArTDsL/InternetExoExplorer/blob/main/LICENSE</Copyright>
</PropertyGroup>
<ItemGroup>
<None Remove="ie.vbs" />
</ItemGroup>
<ItemGroup>
<Content Include="InternetExoExplorer.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="ie.vbs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CustomToolNamespace>InternetExoExplorer</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>
</Project>