-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDirectory.packages.targets
27 lines (24 loc) · 1.05 KB
/
Directory.packages.targets
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
<Project>
<PropertyGroup>
<FileVersion>$(AssemblyVersion)</FileVersion>
<Version>$(AssemblyVersion)</Version>
<Authors>aybe</Authors>
<Description>$(Title)</Description>
<Company>$(Authors)</Company>
<Copyright>$(Authors)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<RepositoryUrl>https://github.com/aybe/DearImGui</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageOutputPath>$(MSBuildThisFileDirectory)build\packages\$(Platform)\$(Configuration)</PackageOutputPath>
<DebugType>embedded</DebugType>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>