Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,4 @@ See the [architectural overview documentation](https://github.com/inkle/ink/blob

**ink** is free forever, but represents multiple years of thought, design, development and testing. Please consider supporting us via [Patreon](http://www.patreon.com/inkle). Thank you, and have fun!

![](Epic_MegaGrants_Recipient_logo_horizontal.png)
![](https://raw.githubusercontent.com/inkle/ink/refs/tags/v.1.2.0/Epic_MegaGrants_Recipient_logo_horizontal.png)
18 changes: 15 additions & 3 deletions compiler/ink_compiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@
<PropertyGroup>
<Company>inkle Ltd</Company>
<Authors>InkleStudios</Authors>
<Copyright>phish</Copyright>
<Copyright>inkle Ltd</Copyright>
<RepositoryUrl>https://github.com/inkle/ink</RepositoryUrl>
<PackageProjectUrl>https://github.com/inkle/ink</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/inkle/ink/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageProjectUrl>https://www.inklestudios.com/ink/</PackageProjectUrl>
<VersionPrefix>1.2.0</VersionPrefix>
<PackageIcon>icon.png</PackageIcon>
<Description>Compiler for the ink scripting language</Description>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>Inkle.Ink.Compiler</PackageId>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<!-- PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net35|AnyCPU'">
Expand All @@ -38,4 +44,10 @@
</AssemblyAttribute>
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE.txt" Pack="true" PackagePath="\"/>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 5 additions & 6 deletions ink-engine-runtime/ink-engine-runtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<Copyright>inkle Ltd</Copyright>
<RepositoryUrl>https://github.com/inkle/ink</RepositoryUrl>
<PackageProjectUrl>https://www.inklestudios.com/ink/</PackageProjectUrl>
<VersionPrefix>1.1.1</VersionPrefix>
<PackageIconUrl>https://avatars2.githubusercontent.com/u/1987090</PackageIconUrl>
<VersionPrefix>1.2.0</VersionPrefix>
<PackageIcon>icon.png</PackageIcon>
<Description>Runtime engine for the ink scripting language</Description>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
Expand All @@ -29,10 +29,9 @@
</PropertyGroup -->

<ItemGroup>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\LICENSE.txt" Pack="true" PackagePath="\"/>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
Expand Down