-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolidStateSidebar.csproj
More file actions
108 lines (108 loc) · 3.96 KB
/
SolidStateSidebar.csproj
File metadata and controls
108 lines (108 loc) · 3.96 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
107
108
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>SSS</RootNamespace>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<PlatformTarget>x64</PlatformTarget>
<Platforms>AnyCPU;x64</Platforms>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Version>0.9.3</Version>
<AssemblyVersion>0.9.3.0</AssemblyVersion>
<FileVersion>0.9.3.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>src/Resources/app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<StartupObject>SSS.App</StartupObject>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>src/Resources/Sidebar.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>SolidStateSidebar_TemporaryKey.pfx</ManifestKeyFile>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Remove="IconTheme\conv.py" />
<None Remove="README.md" />
<None Remove="メモ.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetProjects.SVGImage" Version="5.2.13" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.6" />
<PackageReference Include="TaskScheduler" Version="2.12.2" />
<PackageReference Include="gong-wpf-dragdrop" Version="4.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="src\App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<None Update="src\app.manifest">
<SubType>Designer</SubType>
</None>
<None Update="src\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="src\" />
</ItemGroup>
<ItemGroup>
<Resource Include="src/Resources/Settings.ico" />
</ItemGroup>
<ItemGroup>
<Resource Include="src/Resources/Sidebar.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="src\Resources\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<!-- <Compile Update="src\Resources\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile> -->
</ItemGroup>
<!-- <ItemGroup>
<EmbeddedResource Update="src\Resources\Strings.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
<StronglyTypedClassName>Strings</StronglyTypedClassName>
<StronglyTypedNamespace>SSS</StronglyTypedNamespace>
<CustomToolNamespace>SSS</CustomToolNamespace>
<StronglyTypedLanguage>CSharp</StronglyTypedLanguage>
</EmbeddedResource>
</ItemGroup> -->
<!-- <ItemGroup>
<Compile Remove="src\Resources\Strings.Designer.cs" />
</ItemGroup> -->
<ItemGroup>
<EmbeddedResource Include="IconTheme\Default.json">
<LogicalName>SSS.Styling.IconTheme.Default.json</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="IconTheme\Legacy.json">
<LogicalName>SSS.Styling.IconTheme.Legacy.json</LogicalName>
</EmbeddedResource>
<EmbeddedResource Include="IconTheme\Phosphor Thin.json">
<LogicalName>SSS.Styling.IconTheme.Phosphor Thin.json</LogicalName>
</EmbeddedResource>
</ItemGroup>
<!-- <ItemGroup>
<EmbeddedResource Update="src\Resources\Strings.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup> -->
</Project>