2024-01-29 21:42:06 -06:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
|
|
|
|
|
<LangVersion>12</LangVersion>
|
2024-02-03 20:51:41 -06:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2024-01-31 20:28:50 -06:00
|
|
|
<DefaultNamespace>Microsoft.Iris.Asm</DefaultNamespace>
|
2024-02-18 22:26:25 -06:00
|
|
|
<Version>0.0.2-beta</Version>
|
2024-01-31 20:28:50 -06:00
|
|
|
|
|
|
|
|
<Title>$(DefaultNamespace)</Title>
|
|
|
|
|
<Authors>Joshua Askharoun</Authors>
|
|
|
|
|
<Company>Joshua Askharoun</Company>
|
|
|
|
|
<Description>An Assembly-like language for the compiled Microsoft Iris UI format.</Description>
|
|
|
|
|
<PackageProjectUrl>$(PublishRepositoryUrl)</PackageProjectUrl>
|
|
|
|
|
<PackageTags>Zune, Iris, UIX, UIB</PackageTags>
|
|
|
|
|
<Copyright>2024</Copyright>
|
|
|
|
|
|
|
|
|
|
<!-- SourceLink and NuGet symbols -->
|
|
|
|
|
<PublishRepositoryUrl>https://github.com/ZuneDev/ZuneUIXTools</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
2024-01-29 21:42:06 -06:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-01 20:31:25 -06:00
|
|
|
<!--<ProjectReference Include="..\..\..\ZuneShell.dll\libs\MicrosoftIris\UIX\UIX.csproj" />-->
|
|
|
|
|
<ProjectReference Include="..\MicrosoftIris\UIX\UIX.csproj" />
|
2024-01-30 23:30:42 -06:00
|
|
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
2024-01-29 21:42:06 -06:00
|
|
|
<PackageReference Include="Sprache" Version="2.3.1" />
|
|
|
|
|
|
|
|
|
|
<PackageReference Include="PolySharp" Version="1.14.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2025-01-27 18:40:22 -06:00
|
|
|
|
|
|
|
|
<PackageReference Include="System.Memory" Version="4.6.0" />
|
2024-01-29 21:42:06 -06:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|