-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlipNetPortableLauncher.csproj
More file actions
39 lines (34 loc) · 1.24 KB
/
Copy pathSlipNetPortableLauncher.csproj
File metadata and controls
39 lines (34 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<AssemblyName>SlipNetPortableLauncher</AssemblyName>
<RootNamespace>SlipNetPortableLauncher</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="MainForm.cs" />
<Compile Include="ImportProfilesForm.cs" />
<Compile Include="Models\**\*.cs" />
<Compile Include="Services\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="tools\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<Target Name="CopyBundledToolsAfterPublish" AfterTargets="Publish">
<ItemGroup>
<BundledTools Include="tools\**\*" />
</ItemGroup>
<Copy
SourceFiles="@(BundledTools)"
DestinationFiles="@(BundledTools->'$(PublishDir)tools\%(RecursiveDir)%(Filename)%(Extension)')"
SkipUnchangedFiles="true" />
</Target>
</Project>