-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathEffectCompiler.csproj
More file actions
77 lines (68 loc) · 3.21 KB
/
EffectCompiler.csproj
File metadata and controls
77 lines (68 loc) · 3.21 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>4.2.9001.0</Version>
<AssemblyVersion>4.2.9001.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<TargetFrameworks>net48;net8.0</TargetFrameworks>
<ProjectGuid>{46474D32-2E58-6957-6E64-6F7773324D47}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>EffectCompiler</RootNamespace>
<AssemblyName>KNIFXC</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>CS1591;CS1574;CS0419</NoWarn>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<OutputPath>bin\Windows\$(Platform)\$(Configuration)\</OutputPath>
<IntermediateOutputPath>obj\Windows\$(Platform)\$(Configuration)\</IntermediateOutputPath>
<DefineConstants>$(DefineConstants);WINDOWSDX</DefineConstants>
<LangVersion>7.3</LangVersion>
<ApplicationIcon>App.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<EnableUnmanagedDebugging>true</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Options.cs" />
<Compile Include="CommandLineParser.cs" />
<Compile Include="BuildLogger.cs" />
<Compile Include="ImporterContext.cs" />
<Compile Include="ProcessorContext.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="App.ico" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Xna.Framework\Xna.Framework.csproj">
<Project>{741B4B1E-89E4-434C-8867-6129838AFD51}</Project>
<Name>Xna.Framework</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Xna.Framework.Graphics\Xna.Framework.Graphics.csproj">
<Project>{4b8d3f73-bbd2-4057-b86b-8b73b957dc0f}</Project>
<Name>Xna.Framework.Graphics</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Xna.Framework.Content.Pipeline\Xna.Framework.Content.Pipeline.csproj">
<Project>{73509f44-3566-4b79-bb47-c7c6e2aa2351}</Project>
<Name>Xna.Framework.Content.Pipeline</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Xna.Framework.Content.Pipeline.Graphics\Xna.Framework.Content.Pipeline.Graphics.csproj">
<Project>{7a3fa1d0-1b03-49cb-9e1b-b9dbf27d74b1}</Project>
<Name>Xna.Framework.Content.Pipeline.Graphics</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Xna.Framework.Content.Pipeline.Graphics.MojoProcessor\Xna.Framework.Content.Pipeline.Graphics.MojoProcessor.csproj">
<Project>{476ee43e-e93b-4019-b8b7-ad52c4216456}</Project>
<Name>Xna.Framework.Content.Pipeline.Graphics.MojoProcessor</Name>
</ProjectReference>
</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>