Skip to content

Commit

Permalink
publish profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
capnmidnight committed Apr 10, 2020
1 parent 28413d0 commit de1a583
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,4 @@ dist

[Bb]in/
[Oo]bj/
*.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishDir>..\bin</PublishDir>
<SelfContained>false</SelfContained>
</PropertyGroup>
</Project>
24 changes: 23 additions & 1 deletion Tile Map Converter (C#)/Tile Map Converter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,19 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>Tile_Map_Converter</RootNamespace>
<AssemblyName>xtiled</AssemblyName>
<AssemblyName>tiled2lozya</AssemblyName>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<Authors>Sean T. McBeth</Authors>
<Product>Lozya</Product>
<Description>Converts Tiled tilemaps to JSON files that Lozya understands</Description>
<PackageId>tiled2lozya</PackageId>
<Copyright>Sean T. McBeth</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://meet.primrosevr.com</PackageProjectUrl>
<PackageIcon>favicon-32x32.png</PackageIcon>
<RepositoryUrl>https://github.com/capnmidnight/lozya</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand All @@ -17,4 +28,15 @@
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>

<ItemGroup>
<None Include="..\icons\favicon-32x32.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit de1a583

Please sign in to comment.