-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRandom Item Giver Updater.csproj
More file actions
65 lines (65 loc) · 2.37 KB
/
Copy pathRandom Item Giver Updater.csproj
File metadata and controls
65 lines (65 loc) · 2.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<OutputType>WinExe</OutputType>
<RootNamespace>RandomItemGiverUpdater</RootNamespace>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
</PropertyGroup>
<PropertyGroup>
<StartupObject>RandomItemGiverUpdater.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<Resource Include="Resources\imgAddItems.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\imgDuplicateFinder.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\imgSave.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\imgIcon.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\imgAbout.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\imgRemoveItems.png" />
<Resource Include="Resources\imgWorkplace.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8.1">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8.1 %28x86 und x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
</Project>