From ca47896204482bf4a6979e3838bf7f09f61cebeb Mon Sep 17 00:00:00 2001 From: giy <giy@omp-system.ru> Date: Fri, 02 Sep 2022 14:16:56 +0300 Subject: [PATCH] Обновление до версии 2.9.0 --- QtVsTools.Core/ProSolution.cs | 23 ++++------------------- 1 files changed, 4 insertions(+), 19 deletions(-) diff --git a/QtVsTools.Core/ProSolution.cs b/QtVsTools.Core/ProSolution.cs index 497f213..2eb9990 100644 --- a/QtVsTools.Core/ProSolution.cs +++ b/QtVsTools.Core/ProSolution.cs @@ -35,27 +35,12 @@ { public ProSolution(Solution sln) { - prosln = sln; - proFiles = new List<ProFileContent>(); + ProjectSolution = sln; + ProFiles = new List<ProFileContent>(); } - public List<ProFileContent> ProFiles - { - get - { - return proFiles; - } - } + public List<ProFileContent> ProFiles { get; } - public Solution ProjectSolution - { - get - { - return prosln; - } - } - - private List<ProFileContent> proFiles; - private Solution prosln; + public Solution ProjectSolution { get; } } } -- Gitblit v1.9.1