generated from chrdek/linqpath_prerel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Queryabl.csproj
42 lines (37 loc) · 1.3 KB
/
Queryabl.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
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Queryabl.DataCalc</PackageId>
<Version>1.9.16</Version>
<Authors>Chr dk.</Authors>
<Product>Queryabl.DataCalc</Product>
<Copyright>2023</Copyright>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="deployment.bat" />
<None Remove="queryabl_datacalc_main.png" />
<None Remove="docfx.json" />
<None Remove="lgtm.deprecated" />
<None Remove="LICENSE" />
</ItemGroup>
<ItemGroup>
<Compile Update="DataCalc.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Compile>
</ItemGroup>
<!-- Xcopy usage for packaging , using ..\NuGet\ as default dir -->
<!-- PostBuilds disabled temporarily on review
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="
if $(ConfigurationName) == Debug (
nuget pack .\$(ProjectName).nuspec
xcopy .\$(PackageId).1.9.16.nupkg .\NuGet\ /C /Y
docfx metadata ./docfx.json
docfx build ./docfx.json
)else ( cmd /c echo *****NOTE: Need to run only on Debug, Switch from Release to Debug***** )" />
</Target> -->
</Project>