-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinecraft.UWP.csproj
35 lines (32 loc) · 1.55 KB
/
Minecraft.UWP.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net481</TargetFramework>
<LangVersion>latest</LangVersion>
<NoWarn>IDE0130</NoWarn>
<Optimize>true</Optimize>
<PublishRelease>true</PublishRelease>
<PackRelease>true</PackRelease>
<PackageId>Minecraft.UWP</PackageId>
<Title>Minecraft.UWP</Title>
<Version>1.0.0.0</Version>
<Description>A library that provides various methods to interact with Minecraft: Bedrock Edition for Windows.
</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Aetopia</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Aetopia/Minecraft.UWP/</RepositoryUrl>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyTitle>Minecraft.UWP</AssemblyTitle>
<Product>Minecraft.UWP</Product>
<Copyright>Copyright (C) 2024</Copyright>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
</PropertyGroup>
<ItemGroup>
<None Include="../LICENSE" Pack="true" Visible="false" PackagePath="" />
<None Include="../README.md" Pack="true" Visible="false" PackagePath="" />
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.2" />
</ItemGroup>
</Project>