-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathGregClient.csproj
More file actions
43 lines (42 loc) · 1.94 KB
/
GregClient.csproj
File metadata and controls
43 lines (42 loc) · 1.94 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
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<PackageId>Greg</PackageId>
<Authors></Authors>
<Company>Autodesk, Inc</Company>
<AssemblyCopyright>Copyright � Autodesk, Inc 2022</AssemblyCopyright>
<ProjectGuid>{644207B4-7E7F-474A-952E-3453960D8A01}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Greg</RootNamespace>
<AssemblyName>Greg</AssemblyName>
<TargetFrameworks>net8.0</TargetFrameworks>
<TotalDays>$([System.DateTime]::op_Subtraction($([System.DateTime]::get_Now().get_Date()),$([System.DateTime]::new(2023,1,1))).get_TotalDays())</TotalDays>
<Days>$([MSBuild]::Multiply($(TotalDays), 10))</Days>
<Hours>$([MSBuild]::Divide($([System.DateTime]::get_Now().get_TimeOfDay().get_TotalHours()), 3))</Hours>
<Revision>$([MSBuild]::Add($(Days), $(Hours)).ToString('F0'))</Revision>
<Version>3.0.2.$(Revision)</Version>
<GeneratedAssemblyInfoFile>$(MSBuildProjectDirectory)/$(AppDesignerFolder)/AssemblyVersionInfo.cs</GeneratedAssemblyInfoFile>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>logo_square_32x32.png</PackageIcon>
<Description>The Dynamo Package Manager .Net Client.</Description>
<OutputPath>..\..\bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<ItemGroup Label="Common package dependencies">
<PackageReference Include="RestSharp" Version="112.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\CHANGELOG.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nuspec\images\logo_square_32x32.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>