Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated version #9

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>