-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoogleDriveLFS.csproj
41 lines (38 loc) · 1.58 KB
/
GoogleDriveLFS.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>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Apis.Drive.v3" Version="1.68.0.3373" />
<PackageReference Include="NSIS-Tool" Version="3.10.0" />
</ItemGroup>
<ItemGroup>
<None Update="BeforeAlertsOptimization.data">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="SetupGit.bat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="keys.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="TestData\TestImg1.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="TestData\TestImg2.jpg">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="TestData\test_download.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="TestData\test_upload.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="cd "$(TargetDir)" 
"$(NuGetPackageFolders)nsis-tool\3.10.0\tools\makensis.exe" /NOCD "$(ProjectDir)Installer.nsi"
move "$(TargetDir)SetupGoogleDriveLFS.exe" "$(TargetDir)..\SetupGoogleDriveLFS.exe"" />
</Target>
</Project>