Improvements for Flax.Build setup
This commit is contained in:
@@ -3,35 +3,31 @@
|
|||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net7.0</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>disable</Nullable>
|
<Nullable>annotations</Nullable>
|
||||||
<Configurations>Debug;Release</Configurations>
|
<Configurations>Debug;Release</Configurations>
|
||||||
<BaseOutputPath>..\..\..\Binaries\Tools</BaseOutputPath>
|
<BaseOutputPath>..\..\..\Binaries\Tools</BaseOutputPath>
|
||||||
<OutDir>..\..\..\Binaries\Tools</OutDir>
|
<OutDir>..\..\..\Binaries\Tools</OutDir>
|
||||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||||
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
|
||||||
<DefineConstants>USE_NETCORE</DefineConstants>
|
<DefineConstants>USE_NETCORE</DefineConstants>
|
||||||
</PropertyGroup>
|
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
||||||
|
<ErrorReport>none</ErrorReport>
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
<NoWarn>1701;1702;8981</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Properties"/>
|
<Folder Include="Properties" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="DotNetZip" Version="1.16"/>
|
<PackageReference Include="DotNetZip" Version="1.16" />
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3"/>
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.3" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.2"/>
|
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.2" />
|
||||||
<PackageReference Include="Microsoft.Windows.Compatibility" Version="6.0"/>
|
<PackageReference Include="Microsoft.Windows.Compatibility" Version="6.0" />
|
||||||
<PackageReference Include="Mono.Cecil" Version="0.11.4"/>
|
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0"/>
|
<PackageReference Include="Newtonsoft.Json" Version="13.0" />
|
||||||
<PackageReference Include="System.CodeDom" Version="6.0"/>
|
<PackageReference Include="System.CodeDom" Version="6.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
6
Source/Tools/Flax.Build/global.json
Normal file
6
Source/Tools/Flax.Build/global.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "7.0.0",
|
||||||
|
"rollForward": "latestMinor"
|
||||||
|
}
|
||||||
|
}
|
||||||
6
global.json
Normal file
6
global.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "7.0.0",
|
||||||
|
"rollForward": "latestMinor"
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user