-
-
Notifications
You must be signed in to change notification settings - Fork 548
Expand file tree
/
Copy pathNotepads.DesktopExtension.csproj
More file actions
79 lines (67 loc) · 2.7 KB
/
Notepads.DesktopExtension.csproj
File metadata and controls
79 lines (67 loc) · 2.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<TargetFramework>net5.0</TargetFramework>
<RuntimeIdentifiers>win10-x86; win10-x64; win10-arm64; win10-arm</RuntimeIdentifiers>
<Platforms>x64; x86; ARM64; ARM</Platforms>
<AssemblyName>Notepads32</AssemblyName>
<AssemblyTitle>Notepads</AssemblyTitle>
<Product>Notepads</Product>
<Copyright>Copyright © 2020 Jackie Liu</Copyright>
<PackageId>Notepads</PackageId>
<Authors>Jackie Liu</Authors>
<Description>Desktop Extension to allow users modifying system files with Notepads</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutputType>Exe</OutputType>
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutputType>WinExe</OutputType>
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<OutputType>Exe</OutputType>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<OutputType>WinExe</OutputType>
<PlatformTarget>x86</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
<OutputType>Exe</OutputType>
<PlatformTarget>ARM64</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
<OutputType>WinExe</OutputType>
<PlatformTarget>ARM64</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<OutputType>Exe</OutputType>
<PlatformTarget>ARM</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<OutputType>WinExe</OutputType>
<PlatformTarget>ARM</PlatformTarget>
<Prefer32Bit>true</Prefer32Bit>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Notepads\Settings\SettingsKey.cs" Link="Settings\SettingsKey.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.NET" Version="10.0.18362.6-preview" />
<PackageReference Include="System.Security.Principal.Windows" Version="4.7.0" />
</ItemGroup>
</Project>