-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToolbox.csproj
More file actions
30 lines (25 loc) · 1.29 KB
/
Copy pathToolbox.csproj
File metadata and controls
30 lines (25 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<SelfContained>false</SelfContained>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationIcon>ghosts-projects-high-resolution-logo.ico</ApplicationIcon>
<PackageIcon>ghosts-projects-high-resolution-logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="ghosts-projects-high-resolution-logo.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\..\Downloads\ghosts-projects-high-resolution-logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command=""C:\Program Files\Git\cmd\git.exe" -C "$(MSBuildProjectDirectory)" add -A ." ContinueOnError="true"/>
<Exec Command=""C:\Program Files\Git\cmd\git.exe" -C "$(MSBuildProjectDirectory)" diff --cached --quiet || "C:\Program Files\Git\cmd\git.exe" -C "$(MSBuildProjectDirectory)" commit -m "Auto-Update"" ContinueOnError="true"/>
<Exec Command=""C:\Program Files\Git\cmd\git.exe" -C "$(MSBuildProjectDirectory)" push origin main" ContinueOnError="true"/>
</Target>
</Project>