-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommonVariables.csproj
57 lines (55 loc) · 2.1 KB
/
CommonVariables.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
Variables used by all projects.
Do not import this file directly, use CommonSettings.csproj instead.
-->
<!--
The version to be used for all assemblies.
{Major}.{Minor}.{Patch}{Suffix}
-->
<PropertyGroup>
<CommonVersionMajor>0</CommonVersionMajor>
<CommonVersionMinor>1</CommonVersionMinor>
<CommonVersionPatch>0</CommonVersionPatch>
<!--
Make sure to include a leading dash in the suffix, e.g. "-beta", "-beta.1", "-beta.2", etc
-->
<CommonVersionSuffix>-alpha</CommonVersionSuffix>
</PropertyGroup>
<!--
GUIDs for the Grasshopper and the Rhino Plug-In. Make sure to set these to unique values.
-->
<PropertyGroup>
<GrasshopperPluginGuid>00000000-0100-0000-0000-000001000010</GrasshopperPluginGuid>
<RhinoPluginGuid>00000000-0000-0000-0000-000000000200</RhinoPluginGuid>
</PropertyGroup>
<!--
Common name and namespace for all projects. In case you change the namespace, please also do
a search and replace operation on all code files.
-->
<PropertyGroup>
<CommonNamespace>PluginTemplate</CommonNamespace>
<CommonName>PluginTemplate</CommonName>
</PropertyGroup>
<!--
Author, Company, Copyright, Product
-->
<PropertyGroup>
<CommonAuthors>Mateusz Płoszaj-Mazurek</CommonAuthors>
<CommonAuthorContact>[email protected]</CommonAuthorContact>
<CommonCompany>slad.ai</CommonCompany>
<CommonCopyright>slad.ai 2024</CommonCopyright>
<CommonProduct>A plug-in for LCA in Grasshopper</CommonProduct>
<YakName>$(CommonName)</YakName>
<YakAuthors>$(CommonAuthors), $(CommonCompany)</YakAuthors>
<YakDescription>$(CommonProduct)</YakDescription>
<YakUrl>https://github.com/shapediver/GrasshopperPluginTemplate</YakUrl>
<YakIconUrl>https://github.com/shapediver/GrasshopperPluginTemplate/blob/a7fc6515609bc84d99f9b8dc5f2f062899a7eb11/Artwork/PluginTemplateIcon_32.png</YakIconUrl>
<YakKeywords>
- Rhino
- Grasshopper
- Template
</YakKeywords>
</PropertyGroup>
</Project>