Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Mar 25, 2022
1 parent 0f11fcf commit 4606fb8
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 8 deletions.
14 changes: 11 additions & 3 deletions MeshIO.FBX/MeshIO.FBX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,23 @@
<LangVersion>9.0</LangVersion>
<Authors>DomCr</Authors>
<Company>MeshIO</Company>
<Version>1.0.1-alpha</Version>
<PackageId>MeshIO.FBX</PackageId>
<PackageTags>C# 3D fbx</PackageTags>
<RepositoryUrl>https://github.com/DomCR/MeshIO</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/DomCR/MeshIO</PackageProjectUrl>
<Copyright>Copyright (c) 2020 Albert Domenech</Copyright>
<Copyright>Copyright (c) 2022 Albert Domenech</Copyright>
<Description>MeshIO module for fbx format.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.1.0-alpha</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<DocumentationFile>bin\MeshIO.FBX.xml</DocumentationFile>
</PropertyGroup>
Expand All @@ -29,4 +30,11 @@
<ProjectReference Include="..\MeshIO\MeshIO.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
25 changes: 22 additions & 3 deletions MeshIO.GLTF/MeshIO.GLTF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,26 @@
<LangVersion>9.0</LangVersion>
<Authors>DomCr</Authors>
<Company>MeshIO</Company>
<PackageId>MeshIO.GLTF</PackageId>
<PackageTags>C# 3D glb gltf</PackageTags>
<RepositoryUrl>https://github.com/DomCR/MeshIO</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/DomCR/MeshIO</PackageProjectUrl>
<Copyright>Copyright (c) 2022 Albert Domenech</Copyright>
<Description>MeshIO module for glb-gltf format.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.0.0-alpha</Version>
</PropertyGroup>


<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<DocumentationFile>bin\MeshIO.FBX.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -20,7 +36,10 @@
</ItemGroup>

<ItemGroup>
<Folder Include="Schema\V1\" />
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<Import Project="..\CSUtilities\CSUtilities\CSUtilities.projitems" Label="Shared" />
Expand Down
12 changes: 10 additions & 2 deletions MeshIO/MeshIO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,21 @@
<LangVersion>9.0</LangVersion>
<Authors>DomCr</Authors>
<Company>MeshIO</Company>
<Version>1.0.1-alpha</Version>
<PackageId>MeshIO</PackageId>
<PackageTags>C# 3D</PackageTags>
<RepositoryUrl>https://github.com/DomCR/MeshIO</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/DomCR/MeshIO</PackageProjectUrl>
<Copyright>Copyright (c) 2020 Albert Domenech</Copyright>
<Copyright>Copyright (c) 2022 Albert Domenech</Copyright>
<Description>3D library in pure C# that allows reading and writing in multiple formats.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.1.0-alpha</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
Expand All @@ -27,4 +28,11 @@

<Import Project="..\CSUtilities\CSMath\CSMath.projitems" Label="Shared" />

<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 4606fb8

Please sign in to comment.