forked from nkast/MonoGame
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Xna.Framework.csproj
78 lines (69 loc) · 2.87 KB
/
Xna.Framework.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\kniPackage.props" />
<PropertyGroup>
<BaseOutputPath>..\..\Artifacts\Xna.Framework\</BaseOutputPath>
<Version>3.14.9001.0</Version>
<AssemblyVersion>3.14.9001.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<TargetFrameworks>net40;netstandard2.0;net8.0</TargetFrameworks>
<LangVersion>7.3</LangVersion>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsTrimmable>
<ProjectGuid>{741B4B1E-89E4-434C-8867-6129838AFD51}</ProjectGuid>
<AssemblyName>Xna.Framework</AssemblyName>
<RootNamespace>Microsoft.Xna.Framework</RootNamespace>
<DefineConstants></DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>CS0067;CS1591;CS1574;CS0419;CS8500</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>The core framework.</Description>
<PackageTags>KNI;.net core;core;.net standard;standard</PackageTags>
<PackageId>nkast.Xna.Framework</PackageId>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="ILLink.Descriptors.xml">
<LogicalName>ILLink.Descriptors.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="BoundingBox.cs" />
<Compile Include="BoundingFrustum.cs" />
<Compile Include="BoundingSphere.cs" />
<Compile Include="Complex.cs" />
<Compile Include="ContainmentType.cs" />
<Compile Include="Curve.cs" />
<Compile Include="CurveContinuity.cs" />
<Compile Include="CurveKey.cs" />
<Compile Include="CurveKeyCollection.cs" />
<Compile Include="CurveLoopType.cs" />
<Compile Include="CurveTangent.cs" />
<Compile Include="FrameworkDispatcher.cs" />
<Compile Include="ICurveEvaluator.cs" />
<Compile Include="IntersectsHelper.cs" />
<Compile Include="MathHelper.cs" />
<Compile Include="Matrix.cs" />
<Compile Include="Plane.cs" />
<Compile Include="PlaneIntersectionType.cs" />
<Compile Include="PlayerIndex.cs" />
<Compile Include="Point.cs" />
<Compile Include="Pose2.cs" />
<Compile Include="Pose3.cs" />
<Compile Include="Quaternion.cs" />
<Compile Include="Ray.cs" />
<Compile Include="Rectangle.cs" />
<Compile Include="Vector2.cs" />
<Compile Include="Vector3.cs" />
<Compile Include="Vector4.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>