-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
30 lines (25 loc) · 1011 Bytes
/
Directory.Build.props
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>
<PropertyGroup>
<RootDirectory>$(MSBuildThisFileDirectory)</RootDirectory>
<Deterministic>true</Deterministic>
<RepositoryUrl>https://github.com/jpbruyere/vk.net</RepositoryUrl>
<License>MIT</License>
<Authors>Jean-Philippe Bruyère</Authors>
<Copyright></Copyright>
<Company></Company>
<ToolsFramework>netcoreapp3.1</ToolsFramework>
<!--regenerate vk.net sources with vk.generator-->
<Regenerate>true</Regenerate>
<!--
AutoSetSType = TRUE
automatic set of the sType field with corresponding structure type.
- rewrite will emit sType property set
- structure pointer proxies will set sType property for single instance and enumerable
this implies that a loop for the enumerable on each set.
AutoSetSType = FALSE
Use the `New` static property to create a new instance of the structure with the correct value for sType.
ex: `VkInstanceCreateInfo ci = VkInstanceCreateInfo.New;`
-->
<AutoSetSType>true</AutoSetSType>
</PropertyGroup>
</Project>