-
Notifications
You must be signed in to change notification settings - Fork 0
/
engenious.Sample.csproj
49 lines (43 loc) · 2.83 KB
/
engenious.Sample.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(MSBuildThisFileDirectory)\Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<!-- <PackageReference Include="engenious.ContentTool.SourceGen" Version="1.0.0" />-->
<ProjectReference Include="..\engenious\engenious.csproj" Condition="Exists('..\engenious\engenious.csproj')" />
<PackageReference Include="engenious" Version="0.6.0.7-alpha" Condition="!Exists('..\engenious\engenious.csproj')" />
<ProjectReference Include="..\engenious.ContentTool\engenious.ContentTool\engenious.ContentTool.csproj" Condition="Exists('..\engenious.ContentTool\engenious.ContentTool\engenious.ContentTool.csproj')" PrivateAssets="all" />
<PackageReference Include="engenious.ContentTool" Version="0.6.1.4-alpha" Condition="!Exists('..\engenious.ContentTool\engenious.ContentTool\engenious.ContentTool.csproj')" />
<ProjectReference Include="..\engenious.ContentTool\engenious.ContentTool.SourceGen\engenious.ContentTool.SourceGen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" Condition="Exists('..\engenious.ContentTool\engenious.ContentTool.SourceGen\engenious.ContentTool.SourceGen.csproj')" />
<PackageReference Include="engenious.ContentTool.SourceGen" Version="0.6.1.4-alpha" Condition="!Exists('..\engenious.ContentTool\engenious.ContentTool.SourceGen\engenious.ContentTool.SourceGen.csproj')" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Content\simple\simple.cs" />
<None Include="Content\simple\simple.cs" />
<EngeniousContentReference Include="Content\Content.ecp" />
</ItemGroup>
<ItemGroup>
<None Remove="test.txt" />
<EmbeddedResource Include="test.ego" />
<None Remove="Assets\secondasset.txt" />
<EmbeddedResource Include="Assets\secondasset.ego" />
<None Remove="Assets\bla.txt" />
<EmbeddedResource Include="Assets\bla.txt" />
<Compile Remove="Generated\**" />
<None Include="Generated\**" />
</ItemGroup>
<Import Project="targets\engenious.VERSION\build\engenious.targets" Condition="Exists('..\engenious.ContentTool\engenious.ContentTool\engenious.ContentTool.csproj')" />
<!-- <Target Name="AlwaysClean" BeforeTargets="Build">-->
<!-- <CallTarget Targets="Clean" />-->
<!-- </Target>-->
</Project>