Skip to content

Commit de26552

Browse files
committed
0.2.7.3 (sourcelink)à
1 parent b46ed2d commit de26552

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

DEM.Net.Core/DEM.Net.Core.csproj

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,33 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<PackageId>DEM.Net.Core</PackageId>
5-
<Version>0.2.7.2</Version>
5+
<Version>0.2.7.3</Version>
66
<Authors>Xavier Fischer, Frédéric Aubin</Authors>
77
<Copyright>Xavier Fischer, Frédéric Aubin and Contributors</Copyright>
88
<Owners>Xavier Fischer</Owners>
99
<PackageProjectUrl>https://github.com/dem-net/DEM.Net</PackageProjectUrl>
10-
<PackageReleaseNotes>
11-
Code refactor (removed useless interfaces, readability)
12-
Lines bulk elevation (better performance)
13-
Imagery disk cache
14-
Procedural mesh generation for axis, cylinder, cones
15-
</PackageReleaseNotes>
10+
<PackageReleaseNotes>- Code refactor (removed useless interfaces, readability)
11+
- Lines bulk elevation (better performance)
12+
- Imagery disk cache
13+
- Procedural mesh generation for axis, cylinder, cones</PackageReleaseNotes>
1614
<PackageTags>DEM, Terrain, Elevation</PackageTags>
1715
<Title>DEM.Net</Title>
1816
<Product>DEM.Net</Product>
1917
<Description>Digital Elevation Model library for .Net. Elevation, Heightmaps, STL, glTF</Description>
2018
<Summary>Digital Elevation Model library for .Net. Elevation, Heightmaps, STL, glTF</Summary>
2119
<RepositoryUrl>https://github.com/dem-net/DEM.Net</RepositoryUrl>
2220
<RepositoryType>git</RepositoryType>
23-
<PackageLicenseExpression>
24-
</PackageLicenseExpression>
21+
<PackageLicenseExpression></PackageLicenseExpression>
2522
<PackageIconUrl>https://raw.githubusercontent.com/dem-net/Resources/master/images/DEMnet_512.png</PackageIconUrl>
2623
<PackageIcon>DEMnet_64.png</PackageIcon>
27-
<AssemblyVersion>0.2.7.2</AssemblyVersion>
28-
<FileVersion>0.2.7.2</FileVersion>
24+
<AssemblyVersion>0.2.7.3</AssemblyVersion>
25+
<FileVersion>0.2.7.3</FileVersion>
2926
<UserSecretsId>a9a5d6e1-3bb8-4dfd-ac6a-861f60dada50</UserSecretsId>
3027
<TargetFramework>netstandard2.0</TargetFramework>
3128
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
3229
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
30+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
31+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
3332
</PropertyGroup>
3433
<!-- Build package only in Release -->
3534
<PropertyGroup Condition=" '$(Configuration)' == 'Release'">
@@ -94,6 +93,10 @@
9493
<PackageReference Include="DotSpatial.Projections.NetStandard" Version="1.0.0" />
9594
<PackageReference Include="GeoAPI.CoordinateSystems" Version="1.7.5" />
9695
<PackageReference Include="GeoAPI.Core" Version="1.7.5" />
96+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
97+
<PrivateAssets>all</PrivateAssets>
98+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
99+
</PackageReference>
97100
<PackageReference Include="NetTopologySuite" Version="1.15.3" />
98101
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.5" />
99102
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="3.1.5" />

DEM.Net.glTF/DEM.Net.glTF.csproj

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<PackageId>DEM.Net.glTF</PackageId>
5-
<Version>0.2.7.2</Version>
5+
<Version>0.2.7.3</Version>
66
<Authors>Xavier Fischer</Authors>
77
<Copyright>Xavier Fischer and Contributors</Copyright>
88
<Owners>Xavier Fischer</Owners>
99
<PackageProjectUrl>https://github.com/dem-net/DEM.Net.glTF</PackageProjectUrl>
10-
<PackageReleaseNotes>Migrated to demnet 0.2.7.2</PackageReleaseNotes>
10+
<PackageReleaseNotes>Migrated to demnet 0.2.7.3</PackageReleaseNotes>
1111
<PackageTags>DEM, Terrain, Elevation, Mesh, 3D, glTF, Map, STL</PackageTags>
1212
<Title>DEM.Net</Title>
13-
<Product>DEM.Net</Product>
13+
<Product>DEM.Net Elevation API</Product>
1414
<Description>glTF3D and STL exporters for DEM.Net</Description>
1515
<Summary>glTF3D and STL exporters for DEM.Net</Summary>
1616
<RepositoryUrl>https://github.com/dem-net/DEM.Net.glTF</RepositoryUrl>
@@ -19,10 +19,13 @@
1919
</PackageLicenseExpression>
2020
<PackageIconUrl>https://raw.githubusercontent.com/dem-net/Resources/master/images/DEMnet_512.png</PackageIconUrl>
2121
<PackageIcon>DEMnet_64.png</PackageIcon>
22-
<AssemblyVersion>0.2.7.2</AssemblyVersion>
22+
<AssemblyVersion>0.2.7.3</AssemblyVersion>
2323
<TargetFramework>netstandard2.0</TargetFramework>
2424
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
25+
<LicenseUrl>https://raw.githubusercontent.com/dem-net/DEM.Net.Extensions/master/LICENSE.md</LicenseUrl>
2526
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
27+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
28+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2629
</PropertyGroup>
2730
<!-- Build package only in Release -->
2831
<PropertyGroup Condition=" '$(Configuration)' == 'Release'">
@@ -37,7 +40,6 @@
3740
<GenerateDocumentationFile>false</GenerateDocumentationFile>
3841
</PropertyGroup>
3942
<ItemGroup>
40-
<None Remove="gtlfSharp\SharpGltfService.cs~RF5d4699.TMP" />
4143
<None Include="..\LICENSE.md">
4244
<Pack>True</Pack>
4345
<PackagePath>
@@ -47,6 +49,10 @@
4749
<ItemGroup>
4850
<PackageReference Include="IxMilia.Stl" Version="0.1.1" />
4951
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.5" />
52+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
53+
<PrivateAssets>all</PrivateAssets>
54+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
55+
</PackageReference>
5056
<PackageReference Include="SharpGLTF.Toolkit" Version="1.0.0-alpha0018" />
5157
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
5258
</ItemGroup>

0 commit comments

Comments
 (0)