-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPluginShellCommand.csproj
More file actions
55 lines (47 loc) · 1.96 KB
/
Copy pathPluginShellCommand.csproj
File metadata and controls
55 lines (47 loc) · 1.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<SelfContained>false</SelfContained>
<DebugType>embedded</DebugType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<Product>PluginShellCommand</Product>
<BaseOutputPath>..\BuildOutput\Quokka\PlugBoard\PluginShellCommand</BaseOutputPath>
<PublishDir>..\BuildOutput\Quokka\PlugBoard\PluginShellCommand\Plugin\</PublishDir>
<Configurations>Plugin</Configurations>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PlatformTarget>AnyCPU</PlatformTarget>
<Optimize>True</Optimize>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest-all</AnalysisLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Quokka\Quokka.csproj">
<Private>false</Private>
<ExcludeAssets>runtime;contentFiles</ExcludeAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="settings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>settings.json</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
<ItemGroup>
<ContentWithTargetPath Include="Icons By Icons8.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>Icons By Icons8.txt</TargetPath>
</ContentWithTargetPath>
<ContentWithTargetPath Include="shell.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<TargetPath>shell.png</TargetPath>
</ContentWithTargetPath>
</ItemGroup>
</Project>