Files
ZuneUIXTools/libs/UIX.Asm/UIX.Asm.csproj
T

36 lines
1.4 KiB
XML
Raw Normal View History

2024-01-29 21:42:06 -06:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<LangVersion>12</LangVersion>
2024-01-31 20:28:50 -06:00
<DefaultNamespace>Microsoft.Iris.Asm</DefaultNamespace>
<Version>0.0.1-beta</Version>
<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>
<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>
</ItemGroup>
</Project>