-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMegaBulkUploader.csproj
41 lines (32 loc) · 1.29 KB
/
MegaBulkUploader.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Modules\ProgressBar\**" />
<EmbeddedResource Remove="Modules\ProgressBar\**" />
<None Remove="Modules\ProgressBar\**" />
</ItemGroup>
<ItemGroup>
<None Remove="MegaBulkUploader.sln.DotSettings" />
</ItemGroup>
<ItemGroup>
<Folder Include="cli\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(DOCKER_BUILD)' != 'true'">
<Exec Command="xcopy /E /I /Y /C /Q "$(ProjectDir)cli" "$(TargetDir)cli"" />
</Target>
<Target Name="PostPublishCopy" AfterTargets="Publish" Condition="'$(DOCKER_BUILD)' != 'true'">
<Exec Command="xcopy /E /I /Y /C /Q "$(ProjectDir)cli" "$(PublishDir)cli"" />
<Delete Files="$(PublishDir)$(AssemblyName).exe" />
</Target>
</Project>