|
|
@@ -59,8 +59,8 @@ |
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
@@ -347,25 +347,25 @@ |
|
|
|
<Using xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Namespace="System" />
|
|
|
|
<Using xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Namespace="System.IO" />
|
|
|
|
<Using xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Namespace="System.Xml.Linq" />
|
|
|
|
<Code xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Type="Fragment" Language="cs"><![CDATA[ |
|
|
|
var config = XElement.Load(Config.ItemSpec).Elements("Costura").FirstOrDefault(); |
|
|
|
|
|
|
|
if (config == null) return true; |
|
|
|
|
|
|
|
var excludedAssemblies = new List<string>(); |
|
|
|
var attribute = config.Attribute("ExcludeAssemblies"); |
|
|
|
if (attribute != null) |
|
|
|
foreach (var item in attribute.Value.Split('|').Select(x => x.Trim()).Where(x => x != string.Empty)) |
|
|
|
excludedAssemblies.Add(item); |
|
|
|
var element = config.Element("ExcludeAssemblies"); |
|
|
|
if (element != null) |
|
|
|
foreach (var item in element.Value.Split(new[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries).Select(x => x.Trim()).Where(x => x != string.Empty)) |
|
|
|
excludedAssemblies.Add(item); |
|
|
|
|
|
|
|
var filesToCleanup = Files.Select(f => f.ItemSpec).Where(f => !excludedAssemblies.Contains(Path.GetFileNameWithoutExtension(f), StringComparer.InvariantCultureIgnoreCase)); |
|
|
|
|
|
|
|
foreach (var item in filesToCleanup) |
|
|
|
File.Delete(item); |
|
|
|
<Code xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Type="Fragment" Language="cs"><![CDATA[
|
|
|
|
var config = XElement.Load(Config.ItemSpec).Elements("Costura").FirstOrDefault();
|
|
|
|
|
|
|
|
if (config == null) return true;
|
|
|
|
|
|
|
|
var excludedAssemblies = new List<string>();
|
|
|
|
var attribute = config.Attribute("ExcludeAssemblies");
|
|
|
|
if (attribute != null)
|
|
|
|
foreach (var item in attribute.Value.Split('|').Select(x => x.Trim()).Where(x => x != string.Empty))
|
|
|
|
excludedAssemblies.Add(item);
|
|
|
|
var element = config.Element("ExcludeAssemblies");
|
|
|
|
if (element != null)
|
|
|
|
foreach (var item in element.Value.Split(new[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries).Select(x => x.Trim()).Where(x => x != string.Empty))
|
|
|
|
excludedAssemblies.Add(item);
|
|
|
|
|
|
|
|
var filesToCleanup = Files.Select(f => f.ItemSpec).Where(f => !excludedAssemblies.Contains(Path.GetFileNameWithoutExtension(f), StringComparer.InvariantCultureIgnoreCase));
|
|
|
|
|
|
|
|
foreach (var item in filesToCleanup)
|
|
|
|
File.Delete(item);
|
|
|
|
]]></Code>
|
|
|
|
</Task>
|
|
|
|
</UsingTask>
|
|
|
|