File tree Expand file tree Collapse file tree 5 files changed +86
-0
lines changed
src/HotChocolate/Fusion-vnext Expand file tree Collapse file tree 5 files changed +86
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "dotnet.defaultSolution" : " HotChocolate.Fusion.sln"
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "label" : " build" ,
8
+ "command" : " dotnet" ,
9
+ "type" : " shell" ,
10
+ "args" : [
11
+ " build" ,
12
+ // Ask dotnet build to generate full paths for file names.
13
+ " /property:GenerateFullPaths=true" ,
14
+ // Do not generate summary otherwise it leads to duplicate errors in Problems panel
15
+ " /consoleloggerparameters:NoSummary"
16
+ ],
17
+ "group" : " build" ,
18
+ "presentation" : {
19
+ "reveal" : " silent"
20
+ },
21
+ "problemMatcher" : " $msCompile"
22
+ }
23
+ ]
24
+ }
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <Import Project =" $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\'))" />
3
+
4
+ <PropertyGroup >
5
+ <TargetFrameworks >net8.0</TargetFrameworks >
6
+ <Nullable >enable</Nullable >
7
+ <ImplicitUsings >enable</ImplicitUsings >
8
+ <IsTrimmable >true</IsTrimmable >
9
+ <EnableTrimAnalyzer >true</EnableTrimAnalyzer >
10
+ <IsAotCompatible >true</IsAotCompatible >
11
+ <TreatWarningsAsErrors >false</TreatWarningsAsErrors >
12
+ </PropertyGroup >
13
+
14
+ </Project >
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <Import Project =" $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\'))" />
3
+ <Import Project =" $([MSBuild]::GetPathOfFileAbove('Nullable.props', '$(MSBuildThisFileDirectory)..\'))" />
4
+
5
+ <PropertyGroup >
6
+ <NoWarn >$(NoWarn);CA1812</NoWarn >
7
+ <Nullable >enable</Nullable >
8
+ </PropertyGroup >
9
+
10
+ </Project >
Original file line number Diff line number Diff line change
1
+ <Project >
2
+ <Import Project =" $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\'))" />
3
+
4
+ <PropertyGroup >
5
+ <IsPackable >false</IsPackable >
6
+ <IsTestProject >true</IsTestProject >
7
+ <Nullable >enable</Nullable >
8
+ <ImplicitUsings >enable</ImplicitUsings >
9
+ <GenerateDocumentationFile >false</GenerateDocumentationFile >
10
+ <TreatWarningsAsErrors >false</TreatWarningsAsErrors >
11
+ </PropertyGroup >
12
+
13
+ <ItemGroup >
14
+ <Using Include =" Xunit" />
15
+ </ItemGroup >
16
+
17
+ <ItemGroup >
18
+ <ProjectReference Include =" ..\..\..\..\CookieCrumble\src\CookieCrumble\CookieCrumble.csproj" />
19
+ </ItemGroup >
20
+
21
+ <ItemGroup >
22
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.1.0" />
23
+ <PackageReference Include =" coverlet.msbuild" Version =" 3.1.2" >
24
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
25
+ <PrivateAssets >all</PrivateAssets >
26
+ </PackageReference >
27
+ <PackageReference Include =" xunit" Version =" 2.4.1" />
28
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3" >
29
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
30
+ <PrivateAssets >all</PrivateAssets >
31
+ </PackageReference >
32
+ <PackageReference Include =" Moq" Version =" 4.18.1" />
33
+ </ItemGroup >
34
+
35
+ </Project >
You can’t perform that action at this time.
0 commit comments